Skip to content

Commit 714d2ab

Browse files
committed
Version 1.0.0
1 parent 25470a1 commit 714d2ab

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

Diff for: CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change Log
22
==========
33

4+
## Version 1.0.0
5+
6+
_2020-06-24_
7+
8+
* Removed dependency on com.android.support:support-annotations so the library doesn't have to be jetified
9+
when used in an app with AndroidX.
10+
* Updated to ReLinker 1.4.1
11+
* Supported ABIs: armeabi-v7a, arm64-v8a, x86, x86_64
12+
413
## Version 0.9.0
514

615
_2016-08-04_
@@ -29,4 +38,4 @@ _2016-04-12_
2938

3039
_2016-04-04_
3140

32-
* Initital release
41+
* Initial release

Diff for: README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -42,28 +42,25 @@ SafeContentResolver safeContentResolver = SafeContentResolver.newInstance(contex
4242
## Include the library
4343

4444
```groovy
45-
compile 'de.cketti.safecontentresolver:safe-content-resolver-v14:0.9.0'
45+
implementation 'de.cketti.safecontentresolver:safe-content-resolver-v14:1.0.0'
4646
```
4747

4848
Or, if you're using `minSdkVersion` 21 or higher:
4949

5050
```groovy
51-
compile 'de.cketti.safecontentresolver:safe-content-resolver-v21:0.9.0'
51+
implementation 'de.cketti.safecontentresolver:safe-content-resolver-v21:1.0.0'
5252
```
5353

5454
## Native code
5555

5656
`safe-content-resolver-v14` contains native code for the following ABIs:
57-
* armeabi
5857
* armeabi-v7a
5958
* arm64-v8a
6059
* x86
6160
* x86_64
62-
* mips
63-
* mips64
6461

6562
If you don't want to include all of them in your APK you might want to look into
66-
[ABIs Splits](http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits#TOC-ABIs-Splits).
63+
[ABIs Splits](https://developer.android.com/studio/build/configure-apk-splits.html#configure-abi-split).
6764

6865

6966
## License

Diff for: build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ext {
3030
pom = [
3131
group: "de.cketti.safecontentresolver",
3232
name: "SafeContentResolver",
33-
version: "0.9.0",
33+
version: "1.0.0",
3434
description: "A replacement for Android's ContentResolver to safely open URIs provided by other apps",
3535
url: "https://github.com/cketti/SafeContentResolver",
3636

0 commit comments

Comments
 (0)