Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="zui.polsl.pl.myapplication">
  4.  
  5. <uses-feature android:name="android.hardware.camera" android:required="true" />
  6. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  7.  
  8. <application
  9. android:allowBackup="true"
  10. android:icon="@mipmap/ic_launcher"
  11. android:label="@string/app_name"
  12. android:roundIcon="@mipmap/ic_launcher_round"
  13. android:supportsRtl="true"
  14. android:theme="@style/AppTheme">
  15.  
  16. <provider
  17. android:name="android.support.v4.content.FileProvider"
  18. android:authorities="zui.polsl.pl.android.fileprovider"
  19. android:exported="false"
  20. android:grantUriPermissions="true">
  21. <meta-data
  22. android:name="android.support.FILE_PROVIDER_PATHS"
  23. android:resource="@xml/file_paths"></meta-data>
  24. </provider>
  25.  
  26. <activity android:name=".MainActivity">
  27. <intent-filter>
  28. <action android:name="android.intent.action.MAIN"/>
  29.  
  30. <category android:name="android.intent.category.LAUNCHER"/>
  31. </intent-filter>
  32. </activity>
  33. <activity android:name=".Kartka" android:screenOrientation="landscape">
  34. </activity>
  35. </application>
  36.  
  37. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement