Skip to content

Instantly share code, notes, and snippets.

@FisherKK
Created March 27, 2014 11:54
Show Gist options
  • Save FisherKK/9805925 to your computer and use it in GitHub Desktop.
Save FisherKK/9805925 to your computer and use it in GitHub Desktop.
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
defaultConfig {
minSdkVersion 11
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
sourceSets {
main {
manifest.srcFile 'src/main/AndroidManifest.xml'
java.srcDirs = ['src/main/java', 'src/main/java-gen']
res.srcDirs = ['src/main/res']
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:+'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'de.greenrobot:greendao:1.3.7'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment