Android Question XUI Views : Error description: Current declaration does not match previous one.

Puthut Wibowo

Member
Licensed User
Hello All,


Why everytime I activate XUIViews libraries, the following log notification appears:

B4X:
Compiling code.    Error
Error compiling program.
Error description: Current declaration does not match previous one.
Previous: {Type=Change,Rank=0, RemoteObject=False}
Current: {Type=Float,Rank=0, RemoteObject=True}
Error occurred on line: 76
Dim change As Float = (DateTime.Now - LastTime) / 1000 * ValueChangePerSecond

but if XUIViews is disabled my code can run
 

Attachments

  • Error_XUI.jpg
    Error_XUI.jpg
    54.3 KB · Views: 201
  • libaries.jpg
    libaries.jpg
    57.2 KB · Views: 175

DonManfred

Expert
Licensed User
Longtime User
Error description: Current declaration does not match previous one.
Previous: {
Type=Change,Rank=0, RemoteObject=False}
Current: {Type=Float,Rank=0, RemoteObject=True}
you have a variable change of type "Change". Now you use a variable change of type "Float".
 
Upvote 0
Top