1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Change the package attribute of the Android manifest to match

applicationId
This commit is contained in:
attila 2021-12-08 20:53:24 +01:00 committed by Attila Szarvas
parent 3d7019bdc2
commit f6e6627c32

View file

@ -1639,7 +1639,7 @@ private:
setAttributeIfNotPresent (*manifest, "xmlns:android", "http://schemas.android.com/apk/res/android");
setAttributeIfNotPresent (*manifest, "android:versionCode", androidVersionCode.get());
setAttributeIfNotPresent (*manifest, "android:versionName", project.getVersionString());
setAttributeIfNotPresent (*manifest, "package", project.getBundleIdentifierString());
setAttributeIfNotPresent (*manifest, "package", project.getBundleIdentifierString().toLowerCase());
return manifest;
}