Description
A helper library to ease the most repetitive codes with simple reusable attributes.
AKUAH can help you with many repetitive tasks of daily life development.
I am using this library in my own projects from quit a time. Now I decided to share in for public use.
I have not implemented all the features I used to have in my old library but will keep adding them and some new features.
ak-universal-android-helper alternatives and similar packages
Based on the "Utility" category.
Alternatively, view ak-universal-android-helper alternatives based on common mentions on social networks and blogs.
-
StatusBarUtil
A util for setting status bar style on Android App. -
timber
A logger with a small, extensible API which provides utility on top of Android's normal Log class. -
ExpirableDiskLruCache
Java implementation of a Disk-based LRU cache which specifically targets Android compatibility. -
Byte Buddy
Runtime code generation for the Java virtual machine. -
ASimpleCache
a simple cache for android and java -
wire
gRPC and protocol buffers for Android, Kotlin, Swift and Java. -
ReLinker
A robust native library loader for Android. -
tape
A lightning fast, transactional, file-based FIFO for Android and Java. -
OpenKeychain
OpenKeychain is an OpenPGP implementation for Android. -
joda-time-android
Joda-Time library with Android specialization -
tray
a SharedPreferences replacement for Android with multiprocess support -
AutobahnAndroid
WebSocket & WAMP in Java for Android and Java 8 -
easydeviceinfo
:iphone: [Android Library] Get device information in a super easy way. -
Android-Templates-And-Utilities
Collection of source codes, utilities, templates and snippets for Android development. -
secure-preferences
Android Shared preference wrapper than encrypts the values of Shared Preferences. It's not bullet proof security but rather a quick win for incrementally making your android app more secure. -
greenrobot-common
General purpose utilities and hash functions for Android and Java (aka java-common) -
Androl4b
A Virtual Machine For Assessing Android applications, Reverse Engineering and Malware Analysis -
vector-compat
A support library for VectorDrawable and AnimatedVectorDrawable classes introduced in Lollipop -
smoothie
Easy async loading for Android's ListView/GridView -
CastCompanionLibrary-android
CastCompanionLibrary-android is a library project to enable developers integrate Cast capabilities into their applications faster and easier. -
ColorArt
iTunes 11-style color matching code for Android -
android_dbinspector
Android library for viewing, editing and sharing in app databases. -
AndroidBillingLibrary
Android Market In-app Billing Library -
motion
An Android library allowing images to exhibit a parallax effect that reacts to the device's tilt -
Colours
A beautiful set of predefined colors and a set of color methods to make your Android development life easier. -
EasyCamera
Wrapper around the android Camera class that simplifies its usage -
MrVector
[Deprecated] AKA VectorDrawableCompat: A 7+ backport of VectorDrawable -
Reservoir
Android library to easily serialize and cache your objects to disk using key/value pairs. -
davdroid
DAVdroid – CalDAV/CardDAV synchronization for Android 4+ devices -
Android-Validator
Form Validator Library for Android -
android-validation-komensky
A simple library for validating user input in forms using annotations. -
AndroidFaceCropper
Android bitmap Face Cropper -
dspec
A simple way to define and render UI specs on top of your Android UI. -
routable-android
Routable, an in-app native URL router, for Android -
Treasure
Very easy to use wrapper library for Android SharePreferences -
RoboGif
A small utility to record Android device screen to a GIF -
DebugLog
Create a simple and more understandable Android logs.
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ak-universal-android-helper or a related project?
README
ak-universal-android-helper
A helper library to ease the most repetitive codes with simple reusable attributes.
AKUAH can help you with many repetitive tasks of daily life development.
I am using this library in my own projects from quit a time. Now I decided to share in for public use. I have not implemented all the features I used to have in my old library but will keep adding them and some new features.
Currently this library contains following features.
Custom Detailed Log Messages
AKUAH provides a simple solution for this logging with more detailed solution than android default log. It provides a more simple & clean solution for the logging.
Device Stats Check
AKUAH helps you to identity device specific info & device other status like Network availability, GPS Module availability, Gyroscope availability, Front Camera availability etc.
It includes following options
Check Network availability
Check GPS Module availability in device
Check Gyroscope Module availability in device
Check Front Camera availability in device
Alerts and Notifications
Custom snackbars
Actions & Events
Capture shake event
Custom Fonts
Custom fonts on textview, edittext & buttons
Date Formats
Date formatting & Comparision
Text Utilities
Advance text styling
Text click in multiline TextView.
App Utilities
Check for update on Google Play Store
Ask for rating dialog
Usage
Add this in your application's build.gradle
compile 'ak.andro.kumaraakash86:ak-universal-helper:1.2.3'
Setup
Setup AKUniversalHelper with following code in application file.
AKUniversalConfiguration.Builder config = new AKUniversalConfiguration.Builder(mContext);
AKUniversalHelper.getInstance().init(config.build());
You are ready to go.
See wiki for syntax guide
Version: 1.2.2 - 1.2.3
- Bug fix
Version: 1.2.1
- Ask for rating dialog added (see wiki for App Utilities)
Version: 1.2.0
- Added a simple play store app update checker (see wiki for App Utilities)
- Logging feature optimization
- Can log simple strings with tags & message
Version: 1.1.2
- "getDateDifferences" method added to get differences between two dates (see wiki for Date Formats)
- Option in library setup to define font directory path globally (see wiki for Custom Fonts)
Version: 1.1.1
- Custom shake threshold option in shakelistener
Version: 1.1.0
- Added setting to save all logs
- Option to send logs with mail
Version: 0.15
- Text Style customizer added (Supports underline, bold, italic, subscript, superscript, relative resize, foreground color, background color & strikethrough)
- Text Click listener added
Version: 0.14
- Custom font helper updated
- Flash check added in DeviceStats
Version: 0.13
- Custom font helper added
- Date helper added
Version: 0.12
- Shake Detection
Version: 0.11
- Library Setup from application file for advance future implementation
- Enable/Disable library logs from library setup