|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | | -<manifest package="org.buildmlearn.toolkit" |
3 | | - xmlns:android="http://schemas.android.com/apk/res/android"> |
| 2 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + package="org.buildmlearn.toolkit" > |
4 | 4 |
|
5 | | - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
6 | | - <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
7 | | - <uses-permission android:name="android.permission.INTERNET"/> |
| 5 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 6 | + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 7 | + <uses-permission android:name="android.permission.INTERNET" /> |
8 | 8 |
|
9 | 9 | <uses-feature |
10 | 10 | android:name="android.hardware.camera" |
11 | | - android:required="true"/> |
| 11 | + android:required="true" /> |
12 | 12 |
|
13 | 13 | <application |
14 | 14 | android:name=".ToolkitApplication" |
15 | 15 | android:allowBackup="true" |
16 | 16 | android:icon="@mipmap/ic_launcher" |
17 | 17 | android:label="@string/app_name" |
18 | | - android:theme="@style/AppTheme"> |
| 18 | + android:theme="@style/AppTheme" > |
19 | 19 | <activity |
20 | 20 | android:name=".activity.HomeActivity" |
21 | 21 | android:label="@string/app_name" |
22 | | - android:theme="@style/AppTheme.NoActionBar"> |
| 22 | + android:theme="@style/AppTheme.NoActionBar" > |
23 | 23 | </activity> |
24 | 24 | <activity |
25 | 25 | android:name=".simulator.Simulator" |
26 | 26 | android:label="@string/title_activity_simulator" |
27 | 27 | android:screenOrientation="portrait" |
28 | | - android:theme="@style/Buildmlearn.FullScreen"/> |
| 28 | + android:theme="@style/Buildmlearn.FullScreen" /> |
29 | 29 | <activity |
30 | 30 | android:name=".activity.TemplateActivity" |
31 | 31 | android:label="@string/title_activity_template" |
32 | 32 | android:parentActivityName=".activity.HomeActivity" |
33 | | - android:theme="@style/AppTheme.NoActionBar"> |
| 33 | + android:theme="@style/AppTheme.NoActionBar" > |
34 | 34 | <meta-data |
35 | 35 | android:name="android.support.PARENT_ACTIVITY" |
36 | | - android:value="org.buildmlearn.toolkit.activity.HomeActivity"/> |
| 36 | + android:value="org.buildmlearn.toolkit.activity.HomeActivity" /> |
37 | 37 | </activity> |
38 | 38 | <activity |
39 | 39 | android:name=".activity.TemplateEditor" |
40 | 40 | android:label="@string/title_activity_template_editor" |
41 | | - android:theme="@style/AppTheme.NoActionBar"> |
42 | | - |
| 41 | + android:theme="@style/AppTheme.NoActionBar" > |
43 | 42 | </activity> |
44 | 43 |
|
45 | 44 | <meta-data |
46 | 45 | android:name="io.fabric.ApiKey" |
47 | | - android:value="c1d33469d628f14f5b248cb6d6dcf6de726ef5e3"/> |
| 46 | + android:value="c1d33469d628f14f5b248cb6d6dcf6de726ef5e3" /> |
48 | 47 |
|
49 | 48 | <activity |
50 | 49 | android:name=".activity.FirstRunActivity" |
51 | 50 | android:label="@string/app_name" |
52 | 51 | android:theme="@style/Buildmlearn.FullScreen" |
53 | | - android:windowSoftInputMode="adjustPan"> |
| 52 | + android:windowSoftInputMode="adjustPan" > |
54 | 53 | <intent-filter> |
55 | | - <action android:name="android.intent.action.MAIN"/> |
| 54 | + <action android:name="android.intent.action.MAIN" /> |
56 | 55 |
|
57 | | - <category android:name="android.intent.category.LAUNCHER"/> |
| 56 | + <category android:name="android.intent.category.LAUNCHER" /> |
58 | 57 | </intent-filter> |
59 | 58 | </activity> |
60 | 59 | <activity |
61 | 60 | android:name=".activity.TutorialActivity" |
62 | 61 | android:label="@string/title_activity_tutorial" |
63 | | - android:theme="@style/Buildmlearn.FullScreen"> |
| 62 | + android:theme="@style/Buildmlearn.FullScreen" > |
64 | 63 | </activity> |
65 | 64 | <activity |
66 | 65 | android:name=".activity.AboutBuildmLearn" |
67 | 66 | android:label="@string/title_activity_about_buildm_learn" |
68 | 67 | android:parentActivityName=".activity.HomeActivity" |
69 | | - android:theme="@style/AppTheme.NoActionBar"> |
| 68 | + android:theme="@style/AppTheme.NoActionBar" > |
70 | 69 | <meta-data |
71 | 70 | android:name="android.support.PARENT_ACTIVITY" |
72 | | - android:value="org.buildmlearn.toolkit.activity.HomeActivity"/> |
| 71 | + android:value="org.buildmlearn.toolkit.activity.HomeActivity" /> |
73 | 72 | </activity> |
74 | 73 | <activity |
75 | 74 | android:name=".activity.DeepLinkerActivity" |
76 | | - android:label="@string/title_activity_deep_linker"> |
| 75 | + android:label="@string/title_activity_deep_linker" > |
77 | 76 | <intent-filter |
78 | 77 | android:icon="@mipmap/ic_launcher" |
79 | 78 | android:label="@string/app_name" |
80 | | - android:priority="1"> |
81 | | - <action android:name="android.intent.action.VIEW"/> |
| 79 | + android:priority="1" > |
| 80 | + <action android:name="android.intent.action.VIEW" /> |
82 | 81 |
|
83 | | - <category android:name="android.intent.category.DEFAULT"/> |
| 82 | + <category android:name="android.intent.category.DEFAULT" /> |
84 | 83 |
|
85 | | - <data android:scheme="file"/> |
86 | | - <data android:host="*"/> |
87 | | - <data android:pathPattern=".*\\.buildmlearn"/> |
| 84 | + <data android:scheme="file" /> |
| 85 | + <data android:host="*" /> |
| 86 | + <data android:pathPattern=".*\\.buildmlearn" /> |
88 | 87 | </intent-filter> |
89 | 88 | </activity> |
| 89 | + <activity |
| 90 | + android:name=".activity.UploadActivity" |
| 91 | + android:label="@string/title_activity_upload" |
| 92 | + android:parentActivityName=".activity.TemplateEditor" > |
| 93 | + <meta-data |
| 94 | + android:name="android.support.PARENT_ACTIVITY" |
| 95 | + android:value="org.buildmlearn.toolkit.activity.TemplateEditor" /> |
| 96 | + </activity> |
90 | 97 | </application> |
91 | 98 |
|
92 | 99 | </manifest> |
0 commit comments