Hello all,
I'm trying to update a very old app published on Google Play to the new version of B4A, but when compiling the code (generated in b4A 5 years ago), I'm getting the error:
Cannot find: C:\Program Files (x86)\Anywhere Software\Basic4android\libraries\googleadmobadssdk.jar
I know that today I only need to reference the lib Admob... then, I deleted from manifest every reference to the jar file, but I'm still getting the same error.
Does anybody know how could be happening? This is the manifest... thanks!!!
I'm trying to update a very old app published on Google Play to the new version of B4A, but when compiling the code (generated in b4A 5 years ago), I'm getting the error:
Cannot find: C:\Program Files (x86)\Anywhere Software\Basic4android\libraries\googleadmobadssdk.jar
I know that today I only need to reference the lib Admob... then, I deleted from manifest every reference to the jar file, but I'm still getting the same error.
Does anybody know how could be happening? This is the manifest... thanks!!!
B4X:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="26"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
'Contacts
AddPermission("android.permission.READ_CONTACTS")
AddPermission("android.permission.WRITE_CONTACTS") 'if write access is required
AddPermission("android.permission.READ_PHONE_STATE")
'End Contacts