Advertisement
Guest User

paulettelettelette

a guest
Dec 9th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 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="com.example.gdpr">
  4.  
  5. <uses-permission
  6. android:name="android.permission.ACCESS_COARSE_LOCATION" />
  7. <uses-permission
  8. android:name="android.permission.ACCESS_FINE_LOCATION" />
  9. <uses-permission
  10. android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  11.  
  12. <application
  13. android:allowBackup="true"
  14. android:icon="@mipmap/ic_launcher"
  15. android:label="@string/app_name"
  16. android:roundIcon="@mipmap/ic_launcher_round"
  17. android:supportsRtl="true"
  18. android:theme="@style/AppTheme">
  19. <activity android:name=".MainActivity">
  20. <intent-filter>
  21. <action android:name="android.intent.action.MAIN" />
  22.  
  23. <category android:name="android.intent.category.LAUNCHER" />
  24. </intent-filter>
  25. </activity>
  26. </application>
  27.  
  28. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement