apply plugin: 'com.android.application' | |
android { | |
compileSdkVersion 26 | |
defaultConfig { | |
applicationId "com.example.smithbradley.myapplication" | |
minSdkVersion 15 | |
targetSdkVersion 26 | |
versionCode 1 | |
versionName "1.0" | |
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | |
} | |
buildTypes { | |
release { | |
postprocessing { | |
removeUnusedCode false | |
removeUnusedResources false | |
obfuscate false | |
optimizeCode false | |
proguardFile 'proguard-rules.pro' | |
} | |
} | |
} | |
} |