forked from alexander-yakushev/foreclojure-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.template.xml
45 lines (41 loc) · 1.58 KB
/
AndroidManifest.template.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.bytopia.foreclojure"
android:versionCode="{{version-code}}"
android:versionName="{{version-name}}" >
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name="neko.App"
android:icon="@drawable/ic_launcher"
android:label="{{app-name}}"
android:theme="@style/Theme.MainTheme">
<activity android:name=".SplashActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:screenOrientation="sensor">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".LoginActivity"
android:windowSoftInputMode="adjustResize|stateHidden">
<intent-filter>
<action android:name='org.bytopia.foreclojure.LOGIN'/>
</intent-filter>
</activity>
<activity android:name=".ProblemGridActivity">
<intent-filter>
<action android:name='org.bytopia.foreclojure.MAIN'/>
<category android:name='android.intent.category.DEFAULT'/>
</intent-filter>
</activity>
<activity android:name=".ProblemActivity">
<intent-filter>
<action android:name='org.bytopia.foreclojure.OPEN_PROBLEM'/>
</intent-filter>
</activity>
</application>
{{#debug-build}}
{{/debug-build}}
</manifest>