I just update my wikitude cordova plugin to the new version (5.0.0) and now, when I try to build my app, it fail with many symbol errors. It seems the plugin can't find cordova's method but I have all of the requested method. I tried to update, uninstall, reinstall cordova/phonegap and it still doesn't work. As I saw on stackoverflow I'm not the only one with this problem.
I hope someone got the answer !
Regards,
/home/test/phonegap/build/platforms/android/src/com/wikitude/phonegap/WikitudePlugin.java:263: error: cannot find symbol
if ( !cordova.hasPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE) ) {
^
symbol: method hasPermission(String)
location: variable cordova of type CordovaInterface
/home/test/phonegap/build/platforms/android/src/com/wikitude/phonegap/WikitudePlugin.java:265: error: cannot find symbol
location: variable cordova of type CordovaInterface
/home/test/phonegap/build/platforms/android/src/com/wikitude/phonegap/WikitudePlugin.java:993: error: method does not override or implement a method from a supertype
@Override
A
Andreas Schacherbauer
said
almost 8 years ago
Hi Marc, Which version of the Android SDK and NDK do you have installed?
Best regards
Andreas
A
Andreas Schacherbauer
said
almost 8 years ago
Hi Marc, Maybe this page is helpful. You need to make sure that your android project is generated correctly and contains all runtime permissions related library linking. It might be that you need to update your cordova/phonegap installation.
Hope this helps
Best regards
Andreas
M
Marc Parveau
said
almost 8 years ago
Thanks a lot for your answer ! That was my problem!
Marc Parveau