You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I add to buildozer.spec some value for android.library_references, for example android.library_references = libs/google-play-services_lib it will be added in the project.properties. It's ok but new version of build.py (in buildozer 0.34) use project.properties to generate AndroidManifest.xml and build.gradle and there is a bug:
with open('project.properties', 'r') as fileh:
target = fileh.read().strip()
android_api = target.split('-')[1]
Because in this case in target we have target=android-24\nAPP_PLATFORM=19\nandroid.library.reference.1=../../../../../../libs/google-play-services_lib and in android_api -24\nAPP_PLATFORM=19\nandroid.library.reference.1=../../../../../../libs/google-play-services_lib and this value go to AndroidManifest.xml:
If I add to buildozer.spec some value for android.library_references, for example
android.library_references = libs/google-play-services_lib
it will be added in the project.properties. It's ok but new version of build.py (in buildozer 0.34) use project.properties to generate AndroidManifest.xml and build.gradle and there is a bug:Because in this case in target we have
target=android-24\nAPP_PLATFORM=19\nandroid.library.reference.1=../../../../../../libs/google-play-services_lib
and in android_api-24\nAPP_PLATFORM=19\nandroid.library.reference.1=../../../../../../libs/google-play-services_lib
and this value go to AndroidManifest.xml:and build.gradle:
So it leads to syntax error.
The text was updated successfully, but these errors were encountered: