Skip to content

Commit 2682e51

Browse files
committed
release 1.2.4
1. support arm64-v8a 2. compile and target sdk version 28
1 parent bd2be58 commit 2682e51

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ allprojects {
4242
2.添加依赖
4343
```gradle
4444
dependencies {
45-
 compile 'com.github.pqpo:SmartCropper:v1.2.3@aar'
45+
 compile 'com.github.pqpo:SmartCropper:v1.2.4'
4646
}
4747
```
4848

README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Step 1. Add it in your root build.gradle at the end of repositories:
4444
Step 2. Add the dependency
4545
```
4646
dependencies {
47-
compile 'com.github.pqpo:SmartCropper:v1.2.3@aar'
47+
compile 'com.github.pqpo:SmartCropper:v1.2.4'
4848
}
4949
```
5050

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ android {
2424
}
2525

2626
dependencies {
27-
compile project(':smartcropperlib')
28-
compile fileTree(dir: 'libs', include: ['*.jar'])
29-
compile 'com.android.support:appcompat-v7:25.3.1'
30-
compile 'com.android.support:support-v4:25.3.1'
31-
// compile 'com.github.pqpo:SmartCropper:v1.2.3'
27+
implementation project(':smartcropperlib')
28+
implementation fileTree(include: ['*.jar'], dir: 'libs')
29+
implementation 'com.android.support:appcompat-v7:28.0.0'
30+
implementation 'com.android.support:support-v4:28.0.0'
31+
// compile 'com.github.pqpo:SmartCropper:v1.2.3'
3232
}
-2.43 MB
Binary file not shown.

libs/armeabi/libsmart_cropper.so

-2.39 MB
Binary file not shown.

libs/mips/libsmart_cropper.so

-4.1 MB
Binary file not shown.

libs/x86/libsmart_cropper.so

-4.36 MB
Binary file not shown.

smartcropperlib/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
defaultConfig {
99
minSdkVersion 14
1010
targetSdkVersion 28
11-
versionCode 8
12-
versionName "1.2.3"
11+
versionCode 9
12+
versionName "1.2.4"
1313

1414
externalNativeBuild {
1515
cmake {
@@ -37,5 +37,5 @@ android {
3737
}
3838

3939
dependencies {
40-
compile fileTree(dir: 'libs', include: ['*.jar'])
40+
implementation fileTree(dir: 'libs', include: ['*.jar'])
4141
}

0 commit comments

Comments
 (0)