32 lines
728 B
Groovy
32 lines
728 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
// buildToolsVersion "28.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.opencvtestapp"
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
|
|
ndk {
|
|
moduleName "DataAcquisition"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':openCVLibrary300')
|
|
compile 'com.android.support:appcompat-v7:27+'
|
|
compile 'com.android.support:support-v4:27+'
|
|
compile files('libs/javacsv-2.1.jar')
|
|
compile files('libs/UrineCheck.jar')
|
|
}
|