apply plugin: 'com.android.application' android { compileSdkVersion 28 buildToolsVersion "28.0.0" defaultConfig { applicationId "fishrungames.mountainwallpaper" minSdkVersion 19 targetSdkVersion 28 versionCode 2 versionName "1.1" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" externalNativeBuild { cmake { cppFlags "-std=c++11 -frtti -fexceptions -fsigned-char -Wno-c++11-narrowing" } } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } externalNativeBuild { cmake { path "CMakeLists.txt" } } sourceSets { main { assets.srcDirs = ['../../assets/'] } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:28+' compile project(':SalmonEngineAndroid') }