Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bitfireAT/vcard4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicki Hirner <hirner@bitfire.at>2022-09-27 14:21:48 +0300
committerRicki Hirner <hirner@bitfire.at>2022-09-27 14:21:48 +0300
commit4c30847ab55eda44b3b0cee2d03a7d597a83c6aa (patch)
tree0ba756eb3c77c510d486813162dbe191c718986c
parent18017a475c5e7c9dd6fbc5d5f222cbd2744b81be (diff)
Move package namespace from Manifest to build.gradle
-rw-r--r--build.gradle2
-rw-r--r--src/main/AndroidManifest.xml3
2 files changed, 3 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index d1cb9c5..aa0ed01 100644
--- a/build.gradle
+++ b/build.gradle
@@ -42,6 +42,8 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}
+ namespace 'at.bitfire.vcard4android'
+
buildTypes {
release {
minifyEnabled false
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index 05e0237..a163027 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -6,8 +6,7 @@
~ http://www.gnu.org/licenses/gpl.html
-->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="at.bitfire.vcard4android">
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />