Skip to content

Instantly share code, notes, and snippets.

@px-amaac
Last active January 12, 2016 01:16
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 px-amaac/c5f730ef15f16bee4ff7 to your computer and use it in GitHub Desktop.
Save px-amaac/c5f730ef15f16bee4ff7 to your computer and use it in GitHub Desktop.
gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
applicationId "com.pxamaac.android"
minSdkVersion 12
targetSdkVersion 19
testApplicationId "com.pxamaac.android.test"
testInstrumentationRunner "com.pxamaac.android.test.InstrumentationTestRunnerMock"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:19.1.0'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'joda-time:joda-time:2.7'
compile 'com.google.code.gson:gson:2.4'
compile 'org.slf4j:slf4j-api:1.6.6'
compile 'ch.qos.logback:logback-classic:1.0.9'
compile 'com.j256.ormlite:ormlite-core:4.42'
compile 'com.j256.ormlite:ormlite-android:4.42'
compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.13'
compile 'org.apache.httpcomponents:httpmime:4.2.3'
compile 'commons-codec:commons-codec:1.5'
compile 'org.apache.commons:commons-lang3:3.0'
testCompile 'junit:junit:3.8.2'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment