Android developer portal with tools, libraries, and apps

Show: All / Free / Paid / Demo

You may also be interested in...

We could not find any project with the given search parameters, but maybe the following projects can be interesting for you.

Library that contains the same functionality as Google Translate, it allows you to translate text and speak several languages​​.

Jul 5, 2014
Advertisement

A simple library to make the use of Android's SharedPreferences easier while keeping it type safe. This library was designed to be used with a Dependency Injection Framework like Dagger 2 and Lombok for boilerplate code generation in mind. If you have never used one of those tools I highly recommend looking into them before you start building your app.

Aug 28, 2017

A simple OKHttp client mock, using a programmable request interceptor MockInterceptor interceptor = new MockInterceptor(); OkHttpClient client = new OkHttpClient.Builder() .addInterceptor(interceptor) .build();

Then in the tests: interceptor.addRule(new Rule.Builder() .get() .url("https://testserver/api/json") .respond("{succeed:true}", MEDIATYPE_JSON));

Feb 17, 2018
Advertisement