timber alternatives and similar packages
Based on the "Utility" category.
Alternatively, view timber alternatives based on common mentions on social networks and blogs.
-
StatusBarUtil
A util for setting status bar style on Android App. -
ExpirableDiskLruCache
Java implementation of a Disk-based LRU cache which specifically targets Android compatibility. -
tape
A lightning fast, transactional, file-based FIFO for Android and Java. -
tray
a SharedPreferences replacement for Android with multiprocess support -
joda-time-android
Joda-Time library with Android specialization -
OpenKeychain
OpenKeychain is an OpenPGP implementation for Android. -
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 -
CastCompanionLibrary-android
CastCompanionLibrary-android is a library project to enable developers integrate Cast capabilities into their applications faster and easier. -
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-validation-komensky
A simple library for validating user input in forms using annotations. -
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 -
GhostLog
Android app that displays the logcat buffer in a system overlay window
Appwrite - The Open Source Firebase alternative introduces iOS support
* 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 timber or a related project?
README
[Timber](logo.png)
This is a logger with a small, extensible API which provides utility on top of Android's normal
Log
class.
I copy this class into all the little apps I make. I'm tired of doing it. Now it's a library.
Behavior is added through Tree
instances. You can install an instance by calling Timber.plant
.
Installation of Tree
s should be done as early as possible. The onCreate
of your application is
the most logical choice.
The DebugTree
implementation will automatically figure out from which class it's being called and
use that class name as its tag. Since the tags vary, it works really well when coupled with a log
reader like Pidcat.
There are no Tree
implementations installed by default because every time you log in production, a
puppy dies.
Usage
Two easy steps:
- Install any
Tree
instances you want in theonCreate
of your application class. - Call
Timber
's static methods everywhere throughout your app.
Check out the sample app in timber-sample/
to see it in action.
Lint
Timber ships with embedded lint rules to detect problems in your app.
TimberArgCount (Error) - Detects an incorrect number of arguments passed to a
Timber
call for the specified format string.Example.java:35: Error: Wrong argument count, format string Hello %s %s! requires 2 but format call supplies 1 [TimberArgCount] Timber.d("Hello %s %s!", firstName); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
TimberArgTypes (Error) - Detects arguments which are of the wrong type for the specified format string.
Example.java:35: Error: Wrong argument type for formatting argument '#0' in success = %b: conversion is 'b', received String (argument #2 in method call) [TimberArgTypes] Timber.d("success = %b", taskName); ~~~~~~~~
TimberTagLength (Error) - Detects the use of tags which are longer than Android's maximum length of 23.
Example.java:35: Error: The logging tag can be at most 23 characters, was 35 (TagNameThatIsReallyReallyReallyLong) [TimberTagLength] Timber.tag("TagNameThatIsReallyReallyReallyLong").d("Hello %s %s!", firstName, lastName); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
LogNotTimber (Warning) - Detects usages of Android's
Log
that should be usingTimber
.Example.java:35: Warning: Using 'Log' instead of 'Timber' [LogNotTimber] Log.d("Greeting", "Hello " + firstName + " " + lastName + "!"); ~
StringFormatInTimber (Warning) - Detects
String.format
used inside of aTimber
call. Timber handles string formatting automatically.Example.java:35: Warning: Using 'String#format' inside of 'Timber' [StringFormatInTimber] Timber.d(String.format("Hello, %s %s", firstName, lastName)); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
BinaryOperationInTimber (Warning) - Detects string concatenation inside of a
Timber
call. Timber handles string formatting automatically and should be preferred over manual concatenation.Example.java:35: Warning: Replace String concatenation with Timber's string formatting [BinaryOperationInTimber] Timber.d("Hello " + firstName + " " + lastName + "!"); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
TimberExceptionLogging (Warning) - Detects the use of null or empty messages, or using the exception message when logging an exception.
Example.java:35: Warning: Explicitly logging exception message is redundant [TimberExceptionLogging] Timber.d(e, e.getMessage()); ~~~~~~~~~~~~~~
Download
repositories {
mavenCentral()
}
dependencies {
implementation 'com.jakewharton.timber:timber:5.0.1'
}
Documentation is available at jakewharton.github.io/timber/docs/5.x/.
Snapshots of the development version are available in Sonatype's snapshots repository.
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
implementation 'com.jakewharton.timber:timber:5.1.0-SNAPSHOT'
}
Snapshot documentation is available at jakewharton.github.io/timber/docs/latest/.
License
Copyright 2013 Jake Wharton
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the timber README section above
are relevant to that project's source code only.