| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 10 | compileSdkVersion 10 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| @@ -63,6 +66,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||
| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 10 | compileSdkVersion 10 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| @@ -63,6 +66,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -6,6 +6,9 @@ | |||||
| <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10"/> | <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10"/> | ||||
| <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||||
| <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | ||||
| <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> | |||||
| <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> | |||||
| <uses-permission android:name="android.permission.BLUETOOTH"/> | |||||
| <uses-permission android:name="android.permission.RECORD_AUDIO"/> | <uses-permission android:name="android.permission.RECORD_AUDIO"/> | ||||
| <uses-permission android:name="android.permission.INTERNET"/> | <uses-permission android:name="android.permission.INTERNET"/> | ||||
| <uses-feature android:glEsVersion="0x00020000" android:required="true"/> | <uses-feature android:glEsVersion="0x00020000" android:required="true"/> | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||
| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 10 | compileSdkVersion 10 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| @@ -63,6 +66,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||
| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 23 | compileSdkVersion 23 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| @@ -63,6 +66,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||
| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 10 | compileSdkVersion 10 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-Ofast", "-DCMAKE_C_FLAGS_DEBUG=-Ofast" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-Ofast", "-DCMAKE_C_FLAGS_DEBUG=-Ofast" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| @@ -63,6 +66,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||
| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 10 | compileSdkVersion 10 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| @@ -63,6 +66,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||
| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 10 | compileSdkVersion 10 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| @@ -63,6 +66,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||
| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 26 | compileSdkVersion 26 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| @@ -63,6 +66,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| classpath 'com.google.gms:google-services:3.1.0' | classpath 'com.google.gms:google-services:3.1.0' | ||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||
| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 23 | compileSdkVersion 23 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| @@ -63,6 +66,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||
| @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' | |||||
| android { | android { | ||||
| compileSdkVersion 23 | compileSdkVersion 23 | ||||
| buildToolsVersion "26.0.0" | |||||
| buildToolsVersion "27.0.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| path "CMakeLists.txt" | path "CMakeLists.txt" | ||||
| @@ -46,6 +46,7 @@ android { | |||||
| } | } | ||||
| } | } | ||||
| flavorDimensions "default" | |||||
| productFlavors { | productFlavors { | ||||
| debug_ { | debug_ { | ||||
| ndk { | ndk { | ||||
| @@ -56,6 +57,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| release_ { | release_ { | ||||
| ndk { | ndk { | ||||
| @@ -66,6 +69,8 @@ android { | |||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-Ofast", "-DCMAKE_C_FLAGS_RELEASE=-Ofast" | arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-Ofast", "-DCMAKE_C_FLAGS_RELEASE=-Ofast" | ||||
| } | } | ||||
| } | } | ||||
| dimension "default" | |||||
| } | } | ||||
| } | } | ||||
| @@ -1,9 +1,10 @@ | |||||
| buildscript { | buildscript { | ||||
| repositories { | repositories { | ||||
| jcenter() | jcenter() | ||||
| google() | |||||
| } | } | ||||
| dependencies { | dependencies { | ||||
| classpath 'com.android.tools.build:gradle:2.3.3' | |||||
| classpath 'com.android.tools.build:gradle:3.0.0' | |||||
| } | } | ||||
| } | } | ||||
| @@ -1 +1 @@ | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | |||||