Advertisement
Guest User

AppA modified manifest

a guest
Mar 27th, 2017
864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 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.MyApplication">
  4.  
  5. <permission android:name="com.example.MyApplication.StudentProvider.READ_PERMISSION"/>
  6. <permission android:name="com.example.MyApplication.StudentProvider.WRITE_PERMISSION"/>
  7.  
  8.  
  9. <application
  10. android:allowBackup="true"
  11. android:icon="@mipmap/ic_launcher"
  12. android:label="@string/app_name"
  13. android:supportsRtl="true"
  14. android:theme="@style/AppTheme">
  15. <activity android:name=".MainActivity"
  16. android:exported="true">
  17. <intent-filter>
  18. <action android:name="android.intent.action.MAIN" />
  19. <category android:name="android.intent.category.LAUNCHER" />
  20. </intent-filter>
  21. </activity>
  22.  
  23. <provider android:name="com.example.MyApplication.StudentsProvider"
  24. android:authorities="com.example.MyApplication.StudentsProvider"
  25. android:readPermission="com.example.MyApplication.StudentProvider.READ_PERMISSION"
  26. android:writePermission="com.example.MyApplication.StudentProvider.WRITE_PERMISSION"
  27. android:exported="true"
  28. android:grantUriPermissions="true"
  29. android:enabled="true">
  30. </provider>
  31. </application>
  32. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement