iOS Question XUI Views and compile error

fbritop

Active Member
Licensed User
Longtime User
I have just started using B4X Views for Dialogs, but now the compiler throws and error. I have uploaded the compiler logs and the libs used by the App. Also min version is set to 9

upload_2019-1-28_15-19-47.png


Cannot get which Lib is making the conflict
 

Attachments

  • logs.txt
    130.2 KB · Views: 148

nobbi59

Active Member
Licensed User
Longtime User
The problem seems to be the following line:

:250:1: error: duplicate interface definition for class '_clvitem'

This means there must be two B4i Libs/Classes that define the same ObjC Class.

My guess: You have added CustomListView as a class and its already included in a library you use. To solve it you just need to remove one of them.
 
Last edited:
Upvote 0

techknight

Well-Known Member
Licensed User
Longtime User
xCustomListView may be included inside XUIViews. Might want to take a look. However I dont see another instance of CustomListView selected in your libraries. So thats odd. Only thing I can think of is maybe iSideView
 
Upvote 0
Top