2014-04-16 12:29:56 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.bspeice.minimalbible"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0" >
|
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="8"
|
|
|
|
android:targetSdkVersion="19" />
|
2014-04-18 00:53:14 -04:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2014-04-16 12:29:56 -04:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2014-04-18 00:53:14 -04:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:name="org.bspeice.minimalbible.MinimalBible" >
|
2014-04-16 12:29:56 -04:00
|
|
|
<activity
|
2014-04-16 13:30:59 -04:00
|
|
|
android:name="org.bspeice.minimalbible.activities.viewer.BibleViewer"
|
2014-04-16 12:29:56 -04:00
|
|
|
android:label="@string/app_name" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-04-16 13:17:12 -04:00
|
|
|
<activity
|
|
|
|
android:name="org.bspeice.minimalbible.activities.downloader.DownloadActivity"
|
|
|
|
android:label="@string/title_activity_download" >
|
|
|
|
</activity>
|
2014-04-16 12:29:56 -04:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|