1
0
Fork 0
mirror of https://github.com/ethauvin/Clever.git synced 2025-04-24 08:27:11 -07:00
Clever/AndroidManifest.xml
erik dcfc738fe0 Implemented http/https intent filters.
Added auto location to manifest (move to SD, etc.)
2012-09-10 19:03:18 -07:00

41 lines
No EOL
1.4 KiB
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.clever"
android:installLocation="auto"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<activity
android:name=".MainActivity"
android:hardwareAccelerated="true"
android:immersive="true"
android:label="@string/title_activity_main"
android:screenOrientation="landscape"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>