Skip to content Skip to sidebar Skip to footer

Use Vuforia And Io.realm Db Crash The App

I am having trouble using the SDK-Vuforia 5.0.5 with io.realm data pack. When attempting to boot the Vuforia the app this closing and displays the following error in the line of Lo

Solution 1:

You cannot mix 32-bit and 64-bit libraries which is what is happening here. The proper solution would be to ask Vuforia to provide 64-bit binaries. Until then I am afraid you will manually have to edit the Realm jar file and remove the 64-bit .so files.

Solution 2:

just put this into your app build.gradle defaultConfig {} section:

 ndk {   
   abiFilters  "armeabi-v7a"  
 } 

Post a Comment for "Use Vuforia And Io.realm Db Crash The App"