mirror of
https://github.com/android/ndk-samples
synced 2025-11-11 19:27:19 +08:00
addressing doubl quotation issue from CI:
update all to single quotation whenever applicable except for hello-thirdparty ( dealing with it when working on it)
This commit is contained in:
@@ -3,21 +3,21 @@ apply plugin: 'com.android.model.application'
|
||||
model {
|
||||
android {
|
||||
compileSdkVersion = 23
|
||||
buildToolsVersion = "23.0.2"
|
||||
buildToolsVersion = '23.0.2'
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "com.android.sensorgraph"
|
||||
applicationId = 'com.android.sensorgraph'
|
||||
minSdkVersion.apiLevel = 8
|
||||
targetSdkVersion.apiLevel = 23
|
||||
}
|
||||
ndk {
|
||||
moduleName = "sensorgraph"
|
||||
moduleName = 'sensorgraph'
|
||||
// for clang to build, need to remove mips or remove -Werror
|
||||
// toolchain = 'clang'
|
||||
// abiFilters.addAll(['armeabi','armeabi-v7a', 'arm64-v8a', 'x86', 'x86-64'])
|
||||
stl = "gnustl_static"
|
||||
stl = 'gnustl_static'
|
||||
cppFlags.addAll(['-std=c++11','-Wall', '-Werror'])
|
||||
ldLibs.addAll(["log", "GLESv2", "android"])
|
||||
ldLibs.addAll([ 'android', 'log', 'GLESv2'])
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
|
||||
Reference in New Issue
Block a user