You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.9 KiB
70 lines
1.9 KiB
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
|
|
defaultConfig {
|
|
minSdkVersion 15
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
externalNativeBuild {
|
|
cmake {
|
|
cppFlags "-frtti -fexceptions"
|
|
}
|
|
}
|
|
ndk {
|
|
|
|
// Specifies the ABI configurations of your native
|
|
// libraries Gradle should build and package with your APK.
|
|
// abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'arm64-v8a', 'mips', 'mips64'
|
|
abiFilters 'armeabi-v7a'
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
debug{
|
|
minifyEnabled false //开启混淆®
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path "CMakeLists.txt"
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
jniLibs.srcDirs = ['libs']
|
|
assets.srcDir("main/assets")
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
|
implementation 'org.tensorflow:tensorflow-lite:+'
|
|
implementation 'org.tensorflow:tensorflow-lite-gpu:+'
|
|
implementation project(path: ':openCVLibrary340')
|
|
}
|
|
|
|
task nativeLibsToJar(type: Jar, description: 'create a jar archive of the native libs') {
|
|
destinationDir file("$buildDir/native-libs")
|
|
baseName 'native-libs'
|
|
from fileTree(dir: 'libs', include: '**/*.so')
|
|
into 'lib/'
|
|
}
|
|
tasks.withType(JavaCompile) {
|
|
compileTask -> compileTask.dependsOn(nativeLibsToJar)
|
|
}
|
|
|