Git Product home page Git Product logo

versionist's Introduction

Android Platform | Android Studio | Google Play Services | Support Library | Firebase | Test | Others


Android Platform

Platform VersionAPI LevelVERSION_CODENotes
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.3 Beta 1 is now available

Emulator 25.2.2 are Stable

Google Play Services

// Google+
compile 'com.google.android.gms:play-services-plus:10.0.1'

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Support Library

Firebase

// Analytics
compile 'com.google.firebase:firebase-core:10.0.1'

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

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

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

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

// Cloud Messaging and Notifications
compile 'com.google.firebase:firebase-messaging:10.0.1'

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

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

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

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

Test

// 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'
// JUnit
testCompile 'junit:junit:4.12'

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

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

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

// Robolectric
testCompile 'org.robolectric:robolectric:3.2-rc1'

// Robolectric Shadows Support v4
testCompile 'org.robolectric:shadows-support-v4:3.2-rc1'

// Robolectric Shadows Play Services
testCompile 'org.robolectric:shadows-play-services:3.2-rc1'

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

Others

// Gson
compile 'com.google.code.gson:gson:2.8.0'

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

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

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

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

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

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

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

// AutoValue
compile 'com.google.auto.value:auto-value:1.4-rc1'

versionist's People

Contributors

orhanobut avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.