aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorpacien2018-04-21 19:56:44 +0200
committerpacien2018-04-21 19:56:44 +0200
commit89f8f3d1b7099da47330b869eb2f8038aa152e56 (patch)
tree34c7869216deda5aaab68f50d4fd7618d9b9a56c /app/src/main/AndroidManifest.xml
parent8bc9a3e8cdc6eee6cdc00bc078955e97b351d93b (diff)
downloadtincapp-89f8f3d1b7099da47330b869eb2f8038aa152e56.tar.gz
Simplify action bar
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml12
1 files changed, 4 insertions, 8 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 8fc83b3..5e92405 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -18,8 +18,7 @@
18 <activity 18 <activity
19 android:name=".activities.StartActivity" 19 android:name=".activities.StartActivity"
20 android:configChanges="orientation|screenSize" 20 android:configChanges="orientation|screenSize"
21 android:label="@string/app_label" 21 android:label="@string/app_label">
22 android:theme="@style/AppTheme.NoActionBar">
23 <intent-filter> 22 <intent-filter>
24 <action android:name="android.intent.action.MAIN"/> 23 <action android:name="android.intent.action.MAIN"/>
25 <category android:name="android.intent.category.LAUNCHER"/> 24 <category android:name="android.intent.category.LAUNCHER"/>
@@ -34,14 +33,12 @@
34 <activity 33 <activity
35 android:name=".activities.ConfigureActivity" 34 android:name=".activities.ConfigureActivity"
36 android:configChanges="orientation|screenSize" 35 android:configChanges="orientation|screenSize"
37 android:parentActivityName=".activities.StartActivity" 36 android:parentActivityName=".activities.StartActivity">
38 android:theme="@style/AppTheme.NoActionBar">
39 </activity> 37 </activity>
40 38
41 <activity 39 <activity
42 android:name=".activities.StatusActivity" 40 android:name=".activities.StatusActivity"
43 android:configChanges="orientation|screenSize" 41 android:configChanges="orientation|screenSize">
44 android:theme="@style/AppTheme.NoActionBar">
45 <intent-filter> 42 <intent-filter>
46 <action android:name="org.pacien.tincapp.intent.action.DISCONNECT"/> 43 <action android:name="org.pacien.tincapp.intent.action.DISCONNECT"/>
47 <category android:name="android.intent.category.DEFAULT"/> 44 <category android:name="android.intent.category.DEFAULT"/>
@@ -50,8 +47,7 @@
50 47
51 <activity 48 <activity
52 android:name=".activities.ViewLogActivity" 49 android:name=".activities.ViewLogActivity"
53 android:configChanges="orientation|screenSize" 50 android:configChanges="orientation|screenSize">
54 android:theme="@style/AppTheme.NoActionBar">
55 </activity> 51 </activity>
56 52
57 <service 53 <service