Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cketti committed Jun 24, 2020
1 parent 25470a1 commit 714d2ab
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_
Expand Down Expand Up @@ -29,4 +38,4 @@ _2016-04-12_

_2016-04-04_

* Initital release
* Initial release
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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",

Expand Down

0 comments on commit 714d2ab

Please sign in to comment.