AndroidManifest.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="net.sf.andpdf.pdfviewer"
  4. android:versionCode="19"
  5. android:versionName="0.1.12b" >
  6. <application
  7. android:icon="@drawable/icon"
  8. android:label="@string/app_name" >
  9. <activity android:name=".PdfViewerActivity" >
  10. <intent-filter>
  11. <action android:name="android.intent.action.VIEW" />
  12. <category android:name="android.intent.category.DEFAULT" />
  13. <data android:mimeType="application/pdf" />
  14. </intent-filter>
  15. </activity>
  16. <activity
  17. android:name=".PdfFileSelectActivity"
  18. android:label="@string/app_name" >
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21. <category android:name="android.intent.category.LAUNCHER" />
  22. </intent-filter>
  23. </activity>
  24. </application>
  25. <uses-sdk android:minSdkVersion="3" />
  26. </manifest>