aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Luis Marti <joseluis.marti@gmail.com>2023-02-03 21:37:25 +0100
committerJose Luis Marti <joseluis.marti@gmail.com>2023-02-03 21:37:25 +0100
commit52df4bd16cb5612f3bd34fc3aad67d5de6937b12 (patch)
tree82afa7ae3ad6f0af87c052382b8f3aa66a4fc0d4
parent25ad7496d000e488863f3ee38c1d36419d915f8c (diff)
[Android] set the namespace in the build.gradle file
-rw-r--r--tools/android/packaging/xbmc/AndroidManifest.xml.in1
-rw-r--r--tools/android/packaging/xbmc/build.gradle.in1
2 files changed, 1 insertions, 1 deletions
diff --git a/tools/android/packaging/xbmc/AndroidManifest.xml.in b/tools/android/packaging/xbmc/AndroidManifest.xml.in
index 4df0b0bdd3..aad52556b7 100644
--- a/tools/android/packaging/xbmc/AndroidManifest.xml.in
+++ b/tools/android/packaging/xbmc/AndroidManifest.xml.in
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?><!-- BEGIN_INCLUDE(manifest) -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="@APP_PACKAGE@"
android:installLocation="auto"
android:versionCode="@APP_VERSION_CODE_ANDROID@"
android:versionName="@APP_VERSION@">
diff --git a/tools/android/packaging/xbmc/build.gradle.in b/tools/android/packaging/xbmc/build.gradle.in
index de8cf47c4a..12019f4089 100644
--- a/tools/android/packaging/xbmc/build.gradle.in
+++ b/tools/android/packaging/xbmc/build.gradle.in
@@ -1,6 +1,7 @@
apply plugin: 'com.android.application'
android {
+ namespace '@APP_PACKAGE@'
compileSdkVersion @TARGET_SDK@
ndkPath "@NDKROOT@"
defaultConfig {