diff options
author | Jose Luis Marti <joseluis.marti@gmail.com> | 2023-02-03 21:37:25 +0100 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2024-01-01 06:06:22 +1000 |
commit | b685eda981b037376f8f94d262c53f97ac618dfa (patch) | |
tree | 21d1e7232ef0b0daa6e88a816a294c5e05e87134 /tools | |
parent | c70ba1c235752c4a92f1eaa26c7211eb3b017ac8 (diff) |
[Android] set the namespace in the build.gradle file
Diffstat (limited to 'tools')
-rw-r--r-- | tools/android/packaging/xbmc/AndroidManifest.xml.in | 1 | ||||
-rw-r--r-- | tools/android/packaging/xbmc/build.gradle.in | 1 |
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 e1128252e6..04916a4611 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 { |