Skip to content

Commit

Permalink
release 1.2.4
Browse files Browse the repository at this point in the history
1. support arm64-v8a
2. compile and target sdk version 28
  • Loading branch information
pqpo committed Jan 8, 2019
1 parent bd2be58 commit 2682e51
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ allprojects {
2.添加依赖
```gradle
dependencies {
 compile 'com.github.pqpo:SmartCropper:v1.2.3@aar'
 compile 'com.github.pqpo:SmartCropper:v1.2.4'
}
```

Expand Down
2 changes: 1 addition & 1 deletion README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Step 1. Add it in your root build.gradle at the end of repositories:
Step 2. Add the dependency
```
dependencies {
compile 'com.github.pqpo:SmartCropper:v1.2.3@aar'
compile 'com.github.pqpo:SmartCropper:v1.2.4'
}
```

Expand Down
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ android {
}

dependencies {
compile project(':smartcropperlib')
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
// compile 'com.github.pqpo:SmartCropper:v1.2.3'
implementation project(':smartcropperlib')
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
// compile 'com.github.pqpo:SmartCropper:v1.2.3'
}
Binary file removed libs/armeabi-v7a/libsmart_cropper.so
Binary file not shown.
Binary file removed libs/armeabi/libsmart_cropper.so
Binary file not shown.
Binary file removed libs/mips/libsmart_cropper.so
Binary file not shown.
Binary file removed libs/x86/libsmart_cropper.so
Binary file not shown.
6 changes: 3 additions & 3 deletions smartcropperlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 28
versionCode 8
versionName "1.2.3"
versionCode 9
versionName "1.2.4"

externalNativeBuild {
cmake {
Expand Down Expand Up @@ -37,5 +37,5 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
implementation fileTree(dir: 'libs', include: ['*.jar'])
}

0 comments on commit 2682e51

Please sign in to comment.