aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2023-01-06 19:27:23 +0100
committerpacien2023-01-06 20:02:19 +0100
commitdd3fd370f63a20a77be2ddb1e8a1623d1618df45 (patch)
treedee53382af4f6c2d52825b68521432640761b410
parent556841c490b087cdb652c6d9a0f47daa1bb394d1 (diff)
downloadtincapp-dd3fd370f63a20a77be2ddb1e8a1623d1618df45.tar.gz
manifest: move namespace to build.gradle
Recommended and performed by Android Studio's Upgrade Assistant.
-rw-r--r--app/build.gradle2
-rw-r--r--app/src/main/AndroidManifest.xml3
2 files changed, 3 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle
index c151917..4931020 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -81,6 +81,8 @@ android {
81 ] 81 ]
82 } 82 }
83 } 83 }
84
85 namespace 'org.pacien.tincapp'
84} 86}
85 87
86dependencies { 88dependencies {
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 662af62..c46ad03 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -19,8 +19,7 @@
19--> 19-->
20 20
21<manifest xmlns:android="http://schemas.android.com/apk/res/android" 21<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22 xmlns:tools="http://schemas.android.com/tools" 22 xmlns:tools="http://schemas.android.com/tools">
23 package="org.pacien.tincapp">
24 23
25 <uses-permission android:name="android.permission.INTERNET" /> 24 <uses-permission android:name="android.permission.INTERNET" />
26 25