An open API service indexing awesome lists of open source software.

https://github.com/orhanobut/versionist

✔️ A curated list of latest versions of Android platform and libraries. The list is refreshed automatically everyday
https://github.com/orhanobut/versionist

Last synced: 10 months ago
JSON representation

✔️ A curated list of latest versions of Android platform and libraries. The list is refreshed automatically everyday

Awesome Lists containing this project

README

          

[Android Platform](#android-platform) | [Android Studio](#android-studio) | [Google Play Services](#google-play-services) | [Support Library](#support-library) | [Firebase](#firebase) | [Test](#test) | [Others](#others)

---

# Android Platform

Platform VersionAPI LevelVERSION_CODENotes
Android O
26
O
Platform Highlights
Android 7.1.1
Android 7.1

25
N_MR1
Platform Highlights
Android 7.0
24
N
Platform Highlights
Android 6.0
23
M
Platform Highlights
Android 5.1
22
LOLLIPOP_MR1
Platform
Highlights

Android 5.0
21
LOLLIPOP

Android 4.4W
20
KITKAT_WATCH
KitKat for Wearables Only
Android 4.4
19
KITKAT
Platform
Highlights

Android 4.3
18
JELLY_BEAN_MR2
Platform
Highlights

Android 4.2, 4.2.2
17
JELLY_BEAN_MR1
Platform
Highlights

Android 4.1, 4.1.1
16
JELLY_BEAN
Platform
Highlights

Android 4.0.3, 4.0.4
15
ICE_CREAM_SANDWICH_MR1
Platform
Highlights

Android 4.0, 4.0.1, 4.0.2
14
ICE_CREAM_SANDWICH

Android 3.2
13
HONEYCOMB_MR2

Android 3.1.x
12
HONEYCOMB_MR1
Platform Highlights
Android 3.0.x
11
HONEYCOMB
Platform Highlights
Android 2.3.4
Android 2.3.3

10
GINGERBREAD_MR1
Platform
Highlights

Android 2.3.2
Android 2.3.1

Android 2.3

9
GINGERBREAD

Android 2.2.x
8
FROYO
Platform Highlights
Android 2.1.x
7
ECLAIR_MR1
Platform
Highlights

Android 2.0.1
6
ECLAIR_0_1

Android 2.0
5
ECLAIR

Android 1.6
4
DONUT
Platform Highlights
Android 1.5
3
CUPCAKE
Platform Highlights
Android 1.1
2
BASE_1_1
Android 1.0
1
BASE

# Android Studio
[Android Studio 2.4 Preview 1 is now Available](https://sites.google.com/a/android.com/tools/recent/androidstudio24preview1isnowavailable)

[Emulator Revision 25.3.0 (Feb 2017)](https://sites.google.com/a/android.com/tools/recent/androidemulatorrevision2530feb2017)

# Google Play Services
```groovy
// Google+
compile 'com.google.android.gms:play-services-plus:11.0.2'

// Google Account Login
compile 'com.google.android.gms:play-services-auth:11.0.2'

// Google Actions, Base Client Library
compile 'com.google.android.gms:play-services-base:11.0.2'

// Google Address API
compile 'com.google.android.gms:play-services-identity:11.0.2'

// Google Analytics
compile 'com.google.android.gms:play-services-analytics:11.0.2'

// Google Awareness
compile 'com.google.android.gms:play-services-awareness:11.0.2'

// Google Cast
compile 'com.google.android.gms:play-services-cast:11.0.2'

// Google Cloud Messaging
compile 'com.google.android.gms:play-services-gcm:11.0.2'

// Google Drive
compile 'com.google.android.gms:play-services-drive:11.0.2'

// Google Fit
compile 'com.google.android.gms:play-services-fitness:11.0.2'

// Google Location and Activity Recognition
compile 'com.google.android.gms:play-services-location:11.0.2'

// Google Maps
compile 'com.google.android.gms:play-services-maps:11.0.2'

// Google Mobile Ads
compile 'com.google.android.gms:play-services-ads:11.0.2'

// Google Places
compile 'com.google.android.gms:play-services-places:11.0.2'

// Mobile Vision
compile 'com.google.android.gms:play-services-vision:11.0.2'

// Google Nearby
compile 'com.google.android.gms:play-services-nearby:11.0.2'

// Google Panorama Viewer
compile 'com.google.android.gms:play-services-panorama:11.0.2'

// Google Play Game services
compile 'com.google.android.gms:play-services-games:11.0.2'

// SafetyNet
compile 'com.google.android.gms:play-services-safetynet:11.0.2'

// Android Pay
compile 'com.google.android.gms:play-services-wallet:11.0.2'

// Android Wear
compile 'com.google.android.gms:play-services-wearable:11.0.2'

```

# Support Library
```groovy
```

# Firebase
```groovy
// Analytics
compile 'com.google.firebase:firebase-core:11.0.2'

// Realtime Database
compile 'com.google.firebase:firebase-database:11.0.2'

// Storage
compile 'com.google.firebase:firebase-storage:11.0.2'

// Crash Reporting
compile 'com.google.firebase:firebase-crash:11.0.2'

// Authentication
compile 'com.google.firebase:firebase-auth:11.0.2'

// Cloud Messaging
compile 'com.google.firebase:firebase-messaging:11.0.2'

// Remote Config
compile 'com.google.firebase:firebase-config:11.0.2'

// Invites and Dynamic Links
compile 'com.google.firebase:firebase-invites:11.0.2'

// AdMob
compile 'com.google.firebase:firebase-ads:11.0.2'

// App Indexing
compile 'com.google.firebase:firebase-appindexing:11.0.2'

```

# Test
```groovy
// Android JUnit Runner
androidTestCompile 'com.android.support.test:runner:0.5'

// JUnit4 Rules
androidTestCompile 'com.android.support.test:rules:0.5'

// Espresso core
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'

// Espresso-contrib for DatePicker, RecyclerView, Drawer actions, Accessibility checks, CountingIdlingResource
androidTestCompile 'com.android.support.test.espresso:espresso-contrib:2.2.2'

// Espresso-web for WebView support
androidTestCompile 'com.android.support.test.espresso:espresso-web:2.2.2'

// Espresso-idling-resource for synchronization with background jobs
androidTestCompile 'com.android.support.test.espresso:espresso-idling-resource:2.2.2'

// Espresso-intents for validation and stubbing of Intents
androidTestCompile 'com.android.support.test.espresso:espresso-intents:2.2.2'

// UiAutomator
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'

```
```groovy
// JUnit
testCompile 'junit:junit:4.12'

// Mockito
testCompile 'org.mockito:mockito-core:2.8.47'

// AssertJ
testCompile 'org.assertj:assertj-core:3.8.0'

// Truth
testCompile 'com.google.truth:truth:0.34'

// Robolectric
testCompile 'org.robolectric:robolectric:3.4-rc4'

// Robolectric Shadows Support v4
testCompile 'org.robolectric:shadows-support-v4:3.4-rc2'

// Robolectric Shadows Play Services
testCompile 'org.robolectric:shadows-play-services:3.4-rc2'

// MockServer
testCompile 'com.squareup.okhttp3:mockwebserver:3.8.1'

```

# Kotlin
```groovy
// Kotlin Gradle Plugin
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.3-2'

// Kotlin Android Extension
classpath 'org.jetbrains.kotlin:kotlin-android-extensions:1.1.3-2'

```

# Others
```groovy
// Gson
compile 'com.google.code.gson:gson:2.8.1'

// OkHttp3
compile 'com.squareup.okhttp3:okhttp:3.8.1'

// OkHttp3 Logging Interceptor
compile 'com.squareup.okhttp3:logging-interceptor:3.8.1'

// RxJava
compile 'io.reactivex:rxjava:1.3.0'

// RxAndroid
compile 'io.reactivex:rxandroid:1.2.1'

// Dagger 2
compile 'com.google.dagger:dagger:2.11'

// Logger
compile 'com.orhanobut:logger:2.1.1'

// Timber
compile 'com.jakewharton.timber:timber:4.5.1'

// AutoValue
compile 'com.google.auto.value:auto-value:1.4.1'

```