forked from scoutant/blokish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
20 lines (19 loc) · 924 Bytes
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.scoutant.blokish"
android:versionCode="4" android:versionName="1.1"
>
<application android:icon="@drawable/blokish" android:label="Blokish" android:debuggable="true"
android:theme="@style/scoutant">
<activity android:name=".SplashScreen" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".UI" android:screenOrientation="portrait"/>
<activity android:name=".Settings" android:label="Blokish - Settings" />
<activity android:name=".Help" android:label="Blokish - Help"/>
</application>
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.VIBRATE"/>
</manifest>