diff --git a/README.md b/README.md index 435c6f1..e4be5bf 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ allprojects { 2.添加依赖 ```gradle dependencies { -  compile 'com.github.pqpo:SmartCropper:v1.2.2@aar' +  compile 'com.github.pqpo:SmartCropper:v1.2.3@aar' } ``` diff --git a/README_EN.md b/README_EN.md index 0e8280c..f2addb8 100644 --- a/README_EN.md +++ b/README_EN.md @@ -43,7 +43,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.2@aar' + compile 'com.github.pqpo:SmartCropper:v1.2.3@aar' } ``` diff --git a/app/build.gradle b/app/build.gradle index 7691379..7f17afc 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -29,5 +29,5 @@ dependencies { 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.2' +// compile 'com.github.pqpo:SmartCropper:v1.2.3' } diff --git a/smartcropperlib/build.gradle b/smartcropperlib/build.gradle index 6076ea6..fd20d4a 100644 --- a/smartcropperlib/build.gradle +++ b/smartcropperlib/build.gradle @@ -9,14 +9,14 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 25 - versionCode 7 - versionName "1.2.2" + versionCode 8 + versionName "1.2.3" externalNativeBuild { cmake { cppFlags "-std=c++11 -frtti -fexceptions -lz" abiFilters 'armeabi-v7a', 'x86' -// arguments '-DANDROID_STL=gnustl_shared' + arguments '-DANDROID_STL=gnustl_shared' } }