minor formatting a few samples' build.gradle, no functional change (#599)

This commit is contained in:
Gerry
2018-12-09 11:13:58 -08:00
committed by GitHub
parent 8132651aba
commit a6fe0fb80b
5 changed files with 108 additions and 108 deletions

View File

@@ -1,33 +1,33 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
android {
compileSdkVersion 28
defaultConfig {
applicationId 'com.sample.camera.basic'
minSdkVersion 24
targetSdkVersion 28
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
}
externalNativeBuild {
cmake {
arguments '-DANDROID_STL=c++_static'
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
defaultConfig {
applicationId 'com.sample.camera.basic'
minSdkVersion 24
targetSdkVersion 28
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
}
externalNativeBuild {
cmake {
arguments '-DANDROID_STL=c++_static'
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
}
dependencies {

View File

@@ -1,26 +1,26 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
android {
compileSdkVersion 28
defaultConfig {
defaultConfig {
applicationId 'com.example.nativemedia'
minSdkVersion 14
targetSdkVersion 28
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
aaptOptions {
noCompress 'ts'
}
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
aaptOptions {
noCompress 'ts'
}
}

View File

@@ -1,23 +1,23 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
android {
compileSdkVersion 28
defaultConfig {
applicationId 'com.example.native_plasma'
minSdkVersion 14
targetSdkVersion 28
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
}
defaultConfig {
applicationId 'com.example.native_plasma'
minSdkVersion 14
targetSdkVersion 28
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
}

View File

@@ -1,35 +1,35 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
android {
compileSdkVersion 28
defaultConfig {
applicationId 'com.sample.choreographer'
minSdkVersion 16
targetSdkVersion 28
ndk {
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
}
externalNativeBuild {
defaultConfig {
applicationId 'com.sample.choreographer'
minSdkVersion 16
targetSdkVersion 28
ndk {
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
}
externalNativeBuild {
cmake {
arguments '-DANDROID_TOOLCHAIN=clang',
'-DANDROID_STL=c++_static'
}
}
}
buildTypes {
}
}
buildTypes {
release {
minifyEnabled = false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

View File

@@ -1,31 +1,31 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
android {
compileSdkVersion 28
defaultConfig {
applicationId 'com.example.webp_view'
minSdkVersion 14
targetSdkVersion 28
ndk.abiFilters 'armeabi-v7a'
defaultConfig {
applicationId 'com.example.webp_view'
minSdkVersion 14
targetSdkVersion 28
ndk.abiFilters 'armeabi-v7a'
externalNativeBuild {
cmake {
arguments '-DANDROID_STL=c++_static'
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
externalNativeBuild {
cmake {
arguments '-DANDROID_STL=c++_static'
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
}
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
}