1<manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="foo.bar.print" > 3 4 <uses-sdk android:minSdkVersion="19" 5 android:targetSdkVersion="24" /> 6 7 <application 8 android:icon="@drawable/ic_launcher" 9 android:label="@string/app_name" 10 android:allowBackup="false" > 11 <activity 12 android:name=".PrintActivity" 13 android:label="@string/app_name" > 14 <intent-filter> 15 <action android:name="android.intent.action.MAIN" /> 16 <category android:name="android.intent.category.LAUNCHER" /> 17 </intent-filter> 18 </activity> 19 </application> 20 21</manifest> 22