We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d288fc4 commit 1a80b1eCopy full SHA for 1a80b1e
platform/pure.femto/build-android-native.sh
@@ -93,6 +93,10 @@ popd
93
pushd ${DST_DIR}
94
P="s/package=\"com.pureqml.android\"/package=\"${APP_DOMAIN}\"/"
95
sed -i "${P}" app/src/main/AndroidManifest.xml
96
+ INTENT_FILE=${SRC_DIR}/AndroidManifestIntent.xml
97
+ if [ -e ${INTENT_FILE} ]; then
98
+ sed -i -e '/<!-- Application specific intent -->/ {' -e "r ${INTENT_FILE}" -e 'd' -e '}' -i app/src/main/AndroidManifest.xml
99
+ fi
100
P="s/<string name=\"app_name\">QMLCoreAndroidRuntime<\\/string>/<string name=\"app_name\">${APP_TITLE}<\\/string>/"
101
sed -i "${P}" app/src/main/res/values/strings.xml
102
P="s/-keep public com\\.pureqml\\.android\\./-keep public ${APP_DOMAIN}./g"
0 commit comments