https://github.com/tellh/androidlibrarylatestversion
Check out Latest Version of some common libraries in Android developing.
https://github.com/tellh/androidlibrarylatestversion
Last synced: 5 months ago
JSON representation
Check out Latest Version of some common libraries in Android developing.
- Host: GitHub
- URL: https://github.com/tellh/androidlibrarylatestversion
- Owner: TellH
- Created: 2016-08-15T02:37:26.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-22T12:17:17.000Z (about 9 years ago)
- Last Synced: 2025-07-26T08:27:23.746Z (12 months ago)
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AndroidLibraryLatestVersion
# Common
## [dagger2](https://github.com/google/dagger) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
// Apply plugin
apply plugin: 'com.neenbedankt.android-apt'
// Add Dagger dependencies
dependencies {
compile 'com.google.dagger:dagger:2.x'
apt 'com.google.dagger:dagger-compiler:2.x'
}
```
## [RxJava](https://github.com/ReactiveX/RxJava) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
compile 'io.reactivex:rxjava:${LatestVersion}'
}
```
## [RxAndroid](https://github.com/ReactiveX/RxAndroid) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
compile 'io.reactivex:rxandroid:{LatestVersion}'
}
```
## [butterknife](https://github.com/JakeWharton/butterknife) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
apply plugin: 'android-apt'
dependencies {
compile 'com.jakewharton:butterknife:${LatestVersion}'
apt 'com.jakewharton:butterknife-compiler:${LatestVersion}'
}
```
## [Logger](https://github.com/orhanobut/logger) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
compile 'com.orhanobut:logger:${LatestVersion}'
}
```
## [leakcanary](https://github.com/square/leakcanary) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4-beta2'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
}
-----------
public class ExampleApplication extends Application {
@Override public void onCreate() {
super.onCreate();
LeakCanary.install(this);
}
}
```
# NetWork
## [volley](https://bintray.com/android/android-utils/com.android.volley.volley) [ ](https://bintray.com/android/android-utils/com.android.volley.volley/_latestVersion)
```
compile 'com.android.volley:volley:1.0.0'
```
## [OkHttp](https://github.com/square/okhttp) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
compile 'com.squareup.okhttp3:okhttp:3.4.1'
//compile 'com.squareup.okhttp3:logging-interceptor:3.4.1'
```
## [Retrofit](https://github.com/square/retrofit) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
compile 'com.squareup.retrofit2:retrofit:2.1.0'
//compile 'com.squareup.retrofit2:converter-gson:2.1.0'
//compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
```
## [Stetho](https://github.com/facebook/stetho) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
compile 'com.facebook.stetho:stetho:1.3.1'
//compile 'com.facebook.stetho:stetho-okhttp3:1.3.1'
```
# JsonParser
## [Gson](https://github.com/google/gson) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
compile 'com.google.code.gson:gson:2.7'
```
## [fastjson](https://github.com/alibaba/fastjson) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser) [](https://github.com/alibaba/fastjson/releases)
[For Android Version](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.alibaba%22%20AND%20a%3A%22fastjson%22):
```
compile 'com.alibaba:fastjson:1.1.53.android'
```
# ImageLoader
## [Glide](https://github.com/bumptech/glide) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:support-v4:19.1.0'
}
```
## [Picasso](https://github.com/square/picasso) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
compile 'com.squareup.picasso:picasso:2.5.2'
}
```
## [fresco](https://github.com/facebook/fresco) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
compile 'com.facebook.fresco:fresco:0.12.0'
}
```
# Test
## [junit](https://github.com/junit-team/junit4) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
testCompile 'junit:junit:4.12'
}
```
## [mockito](https://github.com/mockito/mockito) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
testCompile 'org.mockito:mockito-core:1.10.19'
}
```
## [robolectric](https://github.com/robolectric/robolectric/) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
dependencies {
testCompile "org.robolectric:robolectric:3.1.2"
}
```
# DataBase
## [greenDAO](https://github.com/greenrobot/greenDAO) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.greenrobot:greendao-gradle-plugin:3.1.0'
}
}
apply plugin: 'org.greenrobot.greendao'
dependencies {
compile 'org.greenrobot:greendao:3.1.0'
}
```
# EvenBus
## [EventBus](https://github.com/greenrobot/EventBus) [](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
```
compile 'org.greenrobot:eventbus:3.0.0'
```
# UI Weiget
```
compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.android.support:support-v4:24.2.0'
compile 'com.android.support:design:24.2.0'
compile 'com.android.support:recyclerview-v7:24.2.0'
compile 'com.android.support:cardview-v7:24.2.0'
```