Skip to content

Releases: cketti/SafeContentResolver

Version 1.0.0

24 Jun 01:05
Compare
Choose a tag to compare
  • Removed dependency on com.android.support:support-annotations so the library doesn't have to be jetified when used in an app with AndroidX.
  • Updated to ReLinker 1.4.1
  • Supported ABIs: armeabi-v7a, arm64-v8a, x86, x86_64

Version 0.9.0

04 Aug 21:12
Compare
Choose a tag to compare

2016-08-04

  • Use ReLinker to load the os-compat library. This should avoid
    UnsatisfiedLinkError crashes

Version 0.1.0

12 Apr 17:32
Compare
Choose a tag to compare

2016-04-12

  • In addition to files belonging to the app SafeContentResolver now blocks access to content providers belonging to the app.
    To allow access to a specific content provider, add the following <meta-data> element to the appropriate <provider> entry in your manifest:

    <provider … >
       <meta-data
           android:name="de.cketti.safecontentresolver.ALLOW_INTERNAL_ACCESS"
           android:value="true" />
    </provider>

Version 0.0.1

12 Apr 17:29
Compare
Choose a tag to compare

2016-04-04

  • Initital release