Skip to content

Instantly share code, notes, and snippets.

@budioktaviyan
Last active December 26, 2016 01:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save budioktaviyan/956f92506efbee15218268c75f157d4e to your computer and use it in GitHub Desktop.
Save budioktaviyan/956f92506efbee15218268c75f157d4e to your computer and use it in GitHub Desktop.
Gradle Build
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.baculsoft.belajarandroid"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment