Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: "its data" changed to "the data"

...

The following entry in the AndroidManifest.xml file makes the content provider private so that other apps cannot access its the data:

Code Block
<provider android:name=".content.AccountProvider" android:exported="false" android:authorities="jp.co.vulnerable.accountprovider" />

...