Skip to content

Instantly share code, notes, and snippets.

@survivingwithandroid
Created May 15, 2015 20:41
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 survivingwithandroid/8a3e2d4277827986be2a to your computer and use it in GitHub Desktop.
Save survivingwithandroid/8a3e2d4277827986be2a to your computer and use it in GitHub Desktop.
Android Weatherlib with OkHttp
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.survivingwithandroid.weathertest"
minSdkVersion 19
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.0.0'
compile 'com.survivingwithandroid:weatherlib:1.5.7'
compile 'com.survivingwithandroid:weatherlib_okhttpclient:1.5.7'
compile 'com.squareup.okhttp:okhttp:2.3.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment