A collection of utility classes that help make Android development faster (and safer!)
No more unsafe type casting scattered throughout your code:
TextViewx = ViewUtils.findViewById(this, R.id.my_text) ImageViewy = ViewUtils.findViewById(this, R.id.my_image) LinearLayoutz = 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");Simply add Caffeine as a gradle dependency. Distribution is done through jitpack.io.
See https://jitpack.io/#percolate/caffeine for instructions
./gradlew clean test:connectedAndroidTest
Open source. Distributed under the BSD 3 license. See LICENSE.txt for details.