Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created June 15, 2018 07:43
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 ssaurel/23efd95518312684c75c2550cdec4959 to your computer and use it in GitHub Desktop.
Save ssaurel/23efd95518312684c75c2550cdec4959 to your computer and use it in GitHub Desktop.
build.gradle file of the Roulette Game tutorial on SSaurel's Channel
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.ssaurel.roulettegame"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.1'
// don't forget to add the Butter Knife dependencies
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment