Advertisement
Dayatt

Untitled

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