Skip to content

Commit

Permalink
Merge pull request pqpo#59 from z4hyoung/master
Browse files Browse the repository at this point in the history
Support arm64-v8a library
  • Loading branch information
pqpo authored Dec 7, 2018
2 parents 75876f7 + a61e0cf commit bd2be58
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
7 changes: 3 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileSdkVersion 28
defaultConfig {
applicationId "me.pqpo.smartcropper"
minSdkVersion 14
targetSdkVersion 22
targetSdkVersion 28
versionCode 2
versionName "1.1"
ndk {
abiFilters 'armeabi','armeabi-v7a'
abiFilters 'armeabi-v7a', "arm64-v8a", 'x86'
}
}
buildTypes {
Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
}
Expand All @@ -14,6 +15,7 @@ buildscript {
allprojects {
repositories {
jcenter()
google()
maven { url 'https://jitpack.io' }
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Aug 02 17:15:10 CST 2017
#Tue Dec 04 13:45:12 CST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
7 changes: 3 additions & 4 deletions smartcropperlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,18 @@ apply plugin: 'com.github.dcendents.android-maven'
group='com.github.pqpo'

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileSdkVersion 28

defaultConfig {
minSdkVersion 14
targetSdkVersion 25
targetSdkVersion 28
versionCode 8
versionName "1.2.3"

externalNativeBuild {
cmake {
cppFlags "-std=c++11 -frtti -fexceptions -lz"
abiFilters 'armeabi-v7a', 'x86'
abiFilters 'armeabi-v7a', "arm64-v8a", 'x86'
arguments '-DANDROID_STL=gnustl_shared'
}
}
Expand Down
Binary file not shown.
Binary file not shown.
Binary file added smartcropperlib/opencv/lib/arm64-v8a/libtbb.a
Binary file not shown.

0 comments on commit bd2be58

Please sign in to comment.