Created
July 9, 2018 15:30
-
-
Save coreyauger/d377f3ab88474a4fae9f5afdc564ec6b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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