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:
guanghuafan
2016-04-18 11:48:48 -07:00
parent 03f9b3d02f
commit 60d5b73144
11 changed files with 90 additions and 91 deletions

View File

@@ -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 {