Skip to content

Instantly share code, notes, and snippets.

@yelinaung
Last active August 29, 2015 14:23
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 yelinaung/63ae9971a2aca4c890c2 to your computer and use it in GitHub Desktop.
Save yelinaung/63ae9971a2aca4c890c2 to your computer and use it in GitHub Desktop.
MMAUG Simple Databinding - app/build.gradle
apply plugin: 'com.android.application'
apply plugin: 'com.android.databinding'
android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc2"
defaultConfig {
applicationId "org.mmaug.simpledatabinding"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment