Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.       package="com.artifex.mupdf"
  4.       android:versionCode="1"
  5.       android:versionName="1.0">
  6.     <supports-screens android:smallScreens="true"
  7.                       android:normalScreens="true"
  8.                       android:largeScreens="true"
  9.                       android:anyDensity="true" />
  10.     <uses-sdk android:minSdkVersion="8" />
  11.     <application android:label="@string/app_name"
  12.                  android:icon="@drawable/icon"
  13.                  android:debuggable="true">
  14.         <activity android:name="MuPDFActivity"
  15.                   android:label="@string/app_name"
  16.                   android:theme="@style/Theme.NoBackground.NoTitle">
  17.             <intent-filter>
  18.                 <action android:name="android.intent.action.MAIN" />
  19.                 <category android:name="android.intent.category.LAUNCHER" />
  20.             </intent-filter>
  21.         </activity>
  22.     </application>
  23. </manifest>
  24.