1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

android: update 'debug' information support

This commit is contained in:
Alexander Alekhin
2019-05-18 17:13:39 +00:00
parent b4ec8fe3ef
commit 3c1267dbe6
7 changed files with 51 additions and 8 deletions
@@ -11,11 +11,14 @@ android {
buildTypes {
debug {
packagingOptions{
doNotStrip '*.so'
packagingOptions {
doNotStrip '**/*.so' // controlled by OpenCV CMake scripts
}
}
release {
packagingOptions {
doNotStrip '**/*.so' // controlled by OpenCV CMake scripts
}
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
+8
View File
@@ -102,7 +102,15 @@ android {
}
buildTypes {
debug {
packagingOptions {
doNotStrip '**/*.so' // controlled by OpenCV CMake scripts
}
}
release {
packagingOptions {
doNotStrip '**/*.so' // controlled by OpenCV CMake scripts
}
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}