mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
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.
36 lines
1.0 KiB
36 lines
1.0 KiB
6 years ago
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion @ANDROID_COMPILE_SDK_VERSION@
|
||
|
//buildToolsVersion "x.y.z" // not needed since com.android.tools.build:gradle:3.0.0
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion @ANDROID_MIN_SDK_VERSION@
|
||
|
targetSdkVersion @ANDROID_TARGET_SDK_VERSION@
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_6
|
||
|
targetCompatibility JavaVersion.VERSION_1_6
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
jniLibs.srcDirs = ['../../jni']
|
||
|
java.srcDirs = ['src'] // TODO Use original files instead of copied into build directory
|
||
|
aidl.srcDirs = ['src']
|
||
|
res.srcDirs = ['@OpenCV_SOURCE_DIR@/modules/java/android_sdk/android_gradle_lib/res']
|
||
|
manifest.srcFile 'AndroidManifest.xml'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
}
|