Skip to content

Instantly share code, notes, and snippets.

@Ravinnpawar
Created December 24, 2015 10:18
Show Gist options
  • Save Ravinnpawar/86541bdbd9fe4e846ddb to your computer and use it in GitHub Desktop.
Save Ravinnpawar/86541bdbd9fe4e846ddb to your computer and use it in GitHub Desktop.
gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.preciseit.trackusdown"
minSdkVersion 14
targetSdkVersion 21
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile files('libs/activation.jar')
compile files('libs/additionnal.jar')
compile files('libs/ksoap2-android-assembly-2.5.8-jar-with-dependencies.jar')
compile files('libs/mail.jar')
compile project(":library")
// compile project(":backend")
// compile 'com.nineoldandroids:library:2.4.0'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.daimajia.androidanimations:library:1.0.3@aar'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.google.android.gms:play-services:8.1.0'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
compile 'com.andreabaccega:googlshortenerlib:1.0.0'
// compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.1'
//compile project(path: ':backend', configuration: 'android-endpoints')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment