mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-23 23:39:50 -04:00
30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="walljm.dynamicbible"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
<supports-screens
|
|
android:smallScreens="false"
|
|
android:normalScreens="false"
|
|
android:largeScreens="true"
|
|
android:xlargeScreens="true"
|
|
/>
|
|
|
|
<uses-sdk android:minSdkVersion="12" />
|
|
|
|
<application
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name" >
|
|
<activity
|
|
android:label="@string/app_name"
|
|
android:name=".DynamicBibleActivity"
|
|
android:configChanges="keyboardHidden|orientation" >
|
|
<intent-filter >
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |