41 lines
1.3 KiB
Groovy
41 lines
1.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion "28.0.3"
|
|
defaultConfig {
|
|
applicationId "io.interactionlab.capimgdemo"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
sourceSets {
|
|
main {
|
|
jniLibs.srcDirs = ['../../Dependencies/jniLibs']
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
implementation 'org.tensorflow:tensorflow-android:1.5.0'
|
|
implementation files('libs/libftsp.jar')
|
|
//implementation project(':openCVLibrary310')
|
|
// https://mvnrepository.com/artifact/org.opencv/openCVLibrary
|
|
implementation group: 'org.opencv', name: 'openCVLibrary', version: '3.4.0'
|
|
|
|
}
|