diff options
author | Mike Beattie <mike@ethernal.org> | 2019-09-19 10:18:48 +1200 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2019-09-19 10:18:48 +1200 |
commit | ffdac6b48b43dc5610ddb926191a7cff738c97de (patch) | |
tree | 16203595cb91d7d6397cbc7544bb75ea260c238f | |
parent | b6cb79994a58f37f6c743c1f2fafe30337e89d79 (diff) |
Indentation cleanup
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r-- | altosdroid/app/src/main/AndroidManifest.xml.in | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/altosdroid/app/src/main/AndroidManifest.xml.in b/altosdroid/app/src/main/AndroidManifest.xml.in index 89f97d6a..69b5463b 100644 --- a/altosdroid/app/src/main/AndroidManifest.xml.in +++ b/altosdroid/app/src/main/AndroidManifest.xml.in @@ -46,11 +46,12 @@ <application android:label="@string/app_name" android:icon="@drawable/app_icon" android:allowBackup="true" - android:theme="@style/CustomTheme"> + android:theme="@style/CustomTheme"> + <activity android:name="org.altusmetrum.AltosDroid.AltosDroid" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden" - android:launchMode="singleTop"> + android:launchMode="singleTop"> <intent-filter> <category android:name="android.intent.category.LAUNCHER" /> <action android:name="android.intent.action.MAIN" /> @@ -87,13 +88,13 @@ android:theme="@android:style/Theme.Dialog" android:configChanges="orientation|keyboardHidden" /> - <activity android:name=".SetupActivity" - android:label="@string/setup" + <activity android:name=".SetupActivity" + android:label="@string/setup" android:theme="@android:style/Theme.Dialog" android:configChanges="orientation" /> - - <activity android:name=".ManageFrequenciesActivity" - android:label="@string/manage_frequencies" + + <activity android:name=".ManageFrequenciesActivity" + android:label="@string/manage_frequencies" android:theme="@android:style/Theme.Dialog" android:configChanges="orientation|keyboard" /> |