diff options
author | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-08 02:09:47 -0600 |
---|---|---|
committer | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-08 02:09:47 -0600 |
commit | d2ee6a21355c390a4aaefc6ea847060c8e47c6ae (patch) | |
tree | 3a4000d6c933109a91add937827168ab0a18c1b7 /androidApp/src/main/AndroidManifest.xml | |
parent | c80ece3087b862e1849ad5c2972b9b13fec2eb3f (diff) | |
download | etbsa-trackermap-mobile-d2ee6a21355c390a4aaefc6ea847060c8e47c6ae.tar.gz etbsa-trackermap-mobile-d2ee6a21355c390a4aaefc6ea847060c8e47c6ae.tar.bz2 etbsa-trackermap-mobile-d2ee6a21355c390a4aaefc6ea847060c8e47c6ae.zip |
WIP: Starts implementing the main activity
- Removes the MainActivity and the shared code it was using
- Adds the UnitsActivity
- Implements the Map/List toggle functionality
Diffstat (limited to 'androidApp/src/main/AndroidManifest.xml')
-rw-r--r-- | androidApp/src/main/AndroidManifest.xml | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/androidApp/src/main/AndroidManifest.xml b/androidApp/src/main/AndroidManifest.xml index 718fc5d..889342f 100644 --- a/androidApp/src/main/AndroidManifest.xml +++ b/androidApp/src/main/AndroidManifest.xml @@ -1,14 +1,17 @@ <?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" +<manifest + xmlns:android="http://schemas.android.com/apk/res/android" package="mx.trackermap.TrackerMap.android"> + <uses-permission android:name="android.permission.INTERNET" /> + <application - android:label="@string/app_name" + android:name=".TrackerApp" android:allowBackup="false" - android:supportsRtl="true" - android:theme="@style/AppTheme" android:icon="@mipmap/ic_launcher" - android:name=".TrackerApp"> + android:label="@string/app_name" + android:supportsRtl="true" + android:theme="@style/AppTheme"> <activity android:name=".session.LoginActivity" android:exported="true"> @@ -17,5 +20,8 @@ <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> + <activity + android:name=".units.UnitsActivity" + android:exported="false"/> </application> </manifest>
\ No newline at end of file |