| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="foo.bar.print" > |
| |
| <uses-sdk android:minSdkVersion="19" |
| android:targetSdkVersion="24" /> |
| |
| <application |
| android:icon="@drawable/ic_launcher" |
| android:label="@string/app_name" |
| android:allowBackup="false" > |
| <activity |
| android:name=".PrintActivity" |
| android:label="@string/app_name" > |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN" /> |
| <category android:name="android.intent.category.LAUNCHER" /> |
| </intent-filter> |
| </activity> |
| </application> |
| |
| </manifest> |