Skip to content

Instantly share code, notes, and snippets.

@coreyauger
Created July 9, 2018 15:30
Show Gist options
  • Save coreyauger/d377f3ab88474a4fae9f5afdc564ec6b to your computer and use it in GitHub Desktop.
Save coreyauger/d377f3ab88474a4fae9f5afdc564ec6b to your computer and use it in GitHub Desktop.
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
if (buildAsApplication) {
applicationId "io.surfkit.simple"
}
minSdkVersion 24
targetSdkVersion 26
versionCode 1
versionName "1.0"
externalNativeBuild {
ndkBuild {
arguments "APP_PLATFORM=android-26"
}
}
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
ndk {
abiFilters 'armeabi-v7a'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment