Initial push on the hub
[reader-for-android.git] / AndroidManifest.xml
blobb6a7c8a483a1f3229b30a8c517258a911502fc4b
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3         package="com.deeveecube.reader" android:versionCode="1"
4         android:versionName="1.0">
5         <application android:icon="@drawable/icon" android:label="@string/app_name"
6                 android:debuggable="true" android:persistent="true">
7                 <activity android:icon="@drawable/icon" android:label="@string/app_name"
8                         android:name=".filesystem.FileSystemActivity">
9                         <intent-filter>
10                                 <action android:name="android.intent.action.MAIN"></action>
11                                 <category android:name="android.intent.category.LAUNCHER"></category>
12                         </intent-filter>
13                 </activity>
14         </application>
15         <supports-screens android:largeScreens="true"
16                 android:normalScreens="true" android:smallScreens="true"
17                 android:anyDensity="true"></supports-screens>
18         <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
19         <uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
20         <uses-sdk android:targetSdkVersion="7" android:minSdkVersion="7"></uses-sdk>
21 </manifest>