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.
44 lines
1.2 KiB
44 lines
1.2 KiB
6 years ago
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion @ANDROID_COMPILE_SDK_VERSION@
|
||
|
defaultConfig {
|
||
|
applicationId "org.opencv.samples.tutorial4"
|
||
|
minSdkVersion @ANDROID_MIN_SDK_VERSION@
|
||
|
targetSdkVersion @ANDROID_TARGET_SDK_VERSION@
|
||
|
versionCode 301
|
||
|
versionName "3.01"
|
||
|
|
||
|
externalNativeBuild {
|
||
|
cmake {
|
||
|
arguments "-DOpenCV_DIR=" + project(':opencv').projectDir + "/@ANDROID_PROJECT_JNI_PATH@"@OPENCV_ANDROID_CMAKE_EXTRA_ARGS@
|
||
|
targets "JNIpart"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
sourceSets {
|
||
|
main {
|
||
|
java.srcDirs = @ANDROID_SAMPLE_JAVA_PATH@
|
||
|
aidl.srcDirs = @ANDROID_SAMPLE_JAVA_PATH@
|
||
|
res.srcDirs = @ANDROID_SAMPLE_RES_PATH@
|
||
|
manifest.srcFile '@ANDROID_SAMPLE_MANIFEST_PATH@'
|
||
|
}
|
||
|
}
|
||
|
externalNativeBuild {
|
||
|
cmake {
|
||
|
path '@ANDROID_SAMPLE_JNI_PATH@/CMakeLists.txt'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
//implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
implementation project(':opencv')
|
||
|
}
|