|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 |
| -<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
3 |
| - xmlns:tools="http://schemas.android.com/tools" |
4 |
| - package="org.codechimp.ttw" |
5 |
| - android:installLocation="internalOnly" > |
| 2 | +<manifest package="org.codechimp.ttw" |
| 3 | + xmlns:android="http://schemas.android.com/apk/res/android" |
| 4 | + xmlns:tools="http://schemas.android.com/tools" |
| 5 | + android:installLocation="internalOnly"> |
6 | 6 |
|
7 |
| - <uses-permission android:name="android.permission.VIBRATE" /> |
| 7 | + <uses-permission android:name="android.permission.VIBRATE"/> |
8 | 8 |
|
9 | 9 | <application
|
10 | 10 | android:allowBackup="true"
|
11 | 11 | android:icon="@mipmap/ic_launcher"
|
12 | 12 | android:label="@string/app_name"
|
13 |
| - android:theme="@style/AppTheme" > |
| 13 | + android:theme="@style/AppTheme"> |
14 | 14 | <activity
|
15 | 15 | android:name=".MainActivity"
|
16 | 16 | android:label="@string/app_name"
|
17 |
| - android:launchMode="singleTop" > |
| 17 | + android:launchMode="singleTop"> |
18 | 18 | <intent-filter>
|
19 |
| - <action android:name="android.intent.action.MAIN" /> |
| 19 | + <action android:name="android.intent.action.MAIN"/> |
20 | 20 |
|
21 |
| - <category android:name="android.intent.category.LAUNCHER" /> |
| 21 | + <category android:name="android.intent.category.LAUNCHER"/> |
22 | 22 | </intent-filter>
|
23 | 23 | </activity>
|
24 | 24 |
|
25 | 25 | <!-- Locale specifics -->
|
26 | 26 | <activity
|
27 | 27 | android:name=".PluginActivity"
|
| 28 | + android:configChanges="orientation|screenSize" |
28 | 29 | android:exported="true"
|
29 | 30 | android:label="@string/app_name"
|
30 | 31 | android:windowSoftInputMode="adjustResize"
|
31 |
| - tools:ignore="ExportedActivity" > |
| 32 | + tools:ignore="ExportedActivity" |
| 33 | + > |
32 | 34 |
|
33 | 35 | <!-- this Intent filter allows the plug-in to be discovered by Locale -->
|
34 | 36 | <intent-filter>
|
35 |
| - <action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" /> |
| 37 | + <action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING"/> |
36 | 38 | </intent-filter>
|
37 | 39 | </activity>
|
38 | 40 |
|
39 | 41 | <receiver
|
40 | 42 | android:name=".FireReceiver"
|
41 | 43 | android:exported="true"
|
42 |
| - tools:ignore="ExportedReceiver" > |
| 44 | + tools:ignore="ExportedReceiver"> |
43 | 45 |
|
44 | 46 | <!-- this Intent filter allows the plug-in to be discovered by Locale -->
|
45 | 47 | <intent-filter>
|
46 |
| - <action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" /> |
| 48 | + <action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING"/> |
47 | 49 | </intent-filter>
|
48 | 50 | </receiver>
|
49 | 51 | <!-- End Locale specifics -->
|
|
0 commit comments