Popularity
5.3
Stable
Activity
0.0
Stable
413
89
39

Code Quality Rank: L5
Programming language: Java
License: BSD 3-clause "New" or "Revised" License
Tags: Utility    
Latest version: v0.4.7

Caffeine alternatives and similar packages

Based on the "Utility" category.
Alternatively, view Caffeine alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Caffeine or a related project?

Add another 'Utility' Package

README

Caffeine

Speed up your Android development!

Android Arsenal Codacy JitPack

A collection of utility classes that help make Android development faster (and safer!)

Examples

No more unsafe type casting scattered throughout your code:

TextView x = ViewUtils.findViewById(this, R.id.my_text)
ImageView y = ViewUtils.findViewById(this, R.id.my_image)
LinearLayout z = ViewUtils.findViewById(this, R.id.my_layout)

Some handy 1-liners:

ActivityUtils.launchActivity(this, SomeNewActivity.class);
DialogUtils.quickDialog(this, "Some awesome message");
ToastUtils.quickToast(this, "Some toast message");

And much more!

Adding to your application

Simply add Caffeine as a gradle dependency. Distribution is done through jitpack.io.

See https://jitpack.io/#percolate/caffeine for instructions

Running Tests

./gradlew clean test:connectedAndroidTest

License

Open source. Distributed under the BSD 3 license. See LICENSE.txt for details.


*Note that all licence references and agreements mentioned in the Caffeine README section above are relevant to that project's source code only.