Advertisement
Guest User

Untitled

a guest
May 21st, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. 1 <?xml version="1.0" encoding="utf-8"?>
  2. 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="10" android:versionName="1.6" android:compileSdkVersion="28" android:compileSdkVersionCodename="9" package="org.plantainreader" platformBuildVersionCode="10" platformBuildVersionName="{4:1070386381}">
  3. 3 <uses-sdk android:minSdkVersion="17" android:targetSdkVersion="28" />
  4. 4 <uses-permission android:name="android.permission.NFC" />
  5. 5 <uses-feature android:name="android.hardware.nfc" android:required="true" />
  6. 6 <application android:theme="resourceId:0x7f0c0005" android:label="Plantain reader" android:icon="res/mipmap-xxxhdpi-v4/ic_launcher.png" android:appComponentFactory="android.support.v4.app.CoreComponentFactory">
  7. 7 <activity android:name="org.plantainreader.DumpActivity" android:launchMode="singleTask" android:screenOrientation="portrait" android:configChanges="0xa0" android:noHistory="true" />
  8. 8 <activity android:label="Plantain reader" android:name="org.plantainreader.MainActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" android:configChanges="0xa0" android:noHistory="true">
  9. 9 <intent-filter>
  10. 10 <action android:name="android.intent.action.MAIN" />
  11. 11 <category android:name="android.intent.category.LAUNCHER" />
  12. 12 </intent-filter>
  13. 13 <intent-filter>
  14. 14 <action android:name="android.nfc.action.TECH_DISCOVERED" />
  15. 15 <category android:name="android.intent.category.DEFAULT" />
  16. 16 </intent-filter>
  17. 17 <meta-data android:name="android.nfc.action.TECH_DISCOVERED" android:resource="res/xml/techs.xml" />
  18. 18 </activity>
  19. 19 </application>
  20. 20 </manifest>
  21. 21
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement