From 714d2ab8e97b32b1260594eaa21bb806d9904a80 Mon Sep 17 00:00:00 2001 From: cketti Date: Wed, 24 Jun 2020 02:17:41 +0200 Subject: [PATCH] Version 1.0.0 --- CHANGELOG.md | 11 ++++++++++- README.md | 9 +++------ build.gradle | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 000e5e9..9f849b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Change Log ========== +## Version 1.0.0 + +_2020-06-24_ + + * 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 _2016-08-04_ @@ -29,4 +38,4 @@ _2016-04-12_ _2016-04-04_ - * Initital release + * Initial release diff --git a/README.md b/README.md index 6310d78..d3922e1 100644 --- a/README.md +++ b/README.md @@ -42,28 +42,25 @@ SafeContentResolver safeContentResolver = SafeContentResolver.newInstance(contex ## Include the library ```groovy -compile 'de.cketti.safecontentresolver:safe-content-resolver-v14:0.9.0' +implementation 'de.cketti.safecontentresolver:safe-content-resolver-v14:1.0.0' ``` Or, if you're using `minSdkVersion` 21 or higher: ```groovy -compile 'de.cketti.safecontentresolver:safe-content-resolver-v21:0.9.0' +implementation 'de.cketti.safecontentresolver:safe-content-resolver-v21:1.0.0' ``` ## Native code `safe-content-resolver-v14` contains native code for the following ABIs: -* armeabi * armeabi-v7a * arm64-v8a * x86 * x86_64 -* mips -* mips64 If you don't want to include all of them in your APK you might want to look into -[ABIs Splits](http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits#TOC-ABIs-Splits). +[ABIs Splits](https://developer.android.com/studio/build/configure-apk-splits.html#configure-abi-split). ## License diff --git a/build.gradle b/build.gradle index 60e855e..458db47 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext { pom = [ group: "de.cketti.safecontentresolver", name: "SafeContentResolver", - version: "0.9.0", + version: "1.0.0", description: "A replacement for Android's ContentResolver to safely open URIs provided by other apps", url: "https://github.com/cketti/SafeContentResolver",