apply plugin: 'com.android.application' apply plugin: 'kotlin-android' android { compileSdkVersion 26 buildToolsVersion '26.0.0' defaultConfig { applicationId "net.tofvesson.coloursbycontrol" minSdkVersion 14 targetSdkVersion 26 versionCode 4 versionName "1.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" externalNativeBuild { cmake { cppFlags "-std=c++11 -fexceptions" } } vectorDrawables.useSupportLibrary true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } externalNativeBuild { cmake { path "CMakeLists.txt" } } //dexOptions.preDexLibraries false compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) //wearApp project(':wear') compile project(":libtlang") compile 'com.google.android.gms:play-services-wearable:11.0.2' compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support.constraint:constraint-layout:1.0.2' compile 'com.android.support:design:25.3.1' testCompile 'junit:junit:4.12' compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" } repositories { mavenCentral() }