All Projects → Drivemode → Intentlogger

Drivemode / Intentlogger

Licence: apache-2.0
Dump intent content into logcat

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Intentlogger

Emailintentbuilder
An Android Library for the creation of SendTo Intents with mailto: URI
Stars: ✭ 168 (+100%)
Mutual labels:  intent, library
Handle Path Oz
Android Library to handle multiple Uri's(paths) received through Intents.
Stars: ✭ 36 (-57.14%)
Mutual labels:  intent, library
Potato Library
Easy to use Utility library for Android
Stars: ✭ 45 (-46.43%)
Mutual labels:  intent, library
Locationhelper
Android library project that helps you to track user location and manage the updates.
Stars: ✭ 79 (-5.95%)
Mutual labels:  library
Byline
Go library for convert io.Reader to line-by-line Reader
Stars: ✭ 80 (-4.76%)
Mutual labels:  library
Litiv
C++ implementation pool for computer vision R&D projects.
Stars: ✭ 82 (-2.38%)
Mutual labels:  library
D2dlib
A .NET library for hardware-accelerated, high performance, immediate mode rendering via Direct2D.
Stars: ✭ 84 (+0%)
Mutual labels:  library
Vokaturiandroid
Emotion recognition by speech in android.
Stars: ✭ 79 (-5.95%)
Mutual labels:  library
Paris
TypeScript library for implementing Domain-Driven Design in web apps
Stars: ✭ 83 (-1.19%)
Mutual labels:  library
Neumorphic Ui
📚 A library of components based on the concept of neumorphism
Stars: ✭ 82 (-2.38%)
Mutual labels:  library
Sonwan Ui
SonWan UI is a modular UI component library based on figma design to build your next React Web Application.
Stars: ✭ 75 (-10.71%)
Mutual labels:  library
Wymaterialbutton
Interactive and fully animated Material Design button for iOS developers.
Stars: ✭ 80 (-4.76%)
Mutual labels:  library
Shiftregister74hc595
Arduino library that simplifies the usage of shift registers
Stars: ✭ 82 (-2.38%)
Mutual labels:  library
Discrollview2
[DEPRECATED]Android Library for fancy layouts
Stars: ✭ 79 (-5.95%)
Mutual labels:  library
Digitspeedview
Awesome digital speedometer library for android
Stars: ✭ 83 (-1.19%)
Mutual labels:  library
Kotlin Futures
A collections of extension functions to make the JVM Future, CompletableFuture, ListenableFuture API more functional and Kotlin like.
Stars: ✭ 79 (-5.95%)
Mutual labels:  library
Faustlibraries
The Faust libraries
Stars: ✭ 83 (-1.19%)
Mutual labels:  library
Liblognorm
a fast samples-based log normalization library
Stars: ✭ 81 (-3.57%)
Mutual labels:  library
Bitcoin Cryptography Library
Nayuki's implementation of cryptographic primitives used in Bitcoin.
Stars: ✭ 81 (-3.57%)
Mutual labels:  library
Panwid
A collection of widgets for urwid.
Stars: ✭ 82 (-2.38%)
Mutual labels:  library

IntentLogger

Gitter Android Arsenal License Circle CI

Dump intent content into logcat

Usage

Call IntentLogger.dump(String, Intent).

public class MainActivity extends Activity {
    public static final String TAG = MainActivity.class.getSimpleName();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        IntentLogger.dump("test", getIntent());
    }
}

Then in LogCat

app V/test﹕ Intent[172e5d96] content:
app V/test﹕ Action   : android.intent.action.MAIN
app V/test﹕ Category : {android.intent.category.LAUNCHER}
app V/test﹕ Data     : null
app V/test﹕ Component: com.drivemode.intentlog.app/com.drivemode.intentlog.app.MainActivity
app V/test﹕ Flags    : 10000001100000000000000000000
app V/test﹕ Flag     : FLAG_RECEIVER_FOREGROUND
app V/test﹕ Flag     : FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY
app V/test﹕ Flag     : FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
app V/test﹕ HasExtras: true
app V/test﹕ Extra[profile] :0

cf. Intent#toString()

app V/test﹕ Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10100000 cmp=com.drivemode.intentlog.app/.MainActivity bnds=[481,810][1312,1641] }

Download

Gradle:

compile 'com.drivemode:IntentLogger:[email protected]'

License

Apache v2

Copyright (C) 2014 Drivemode, Inc. All rights reserved.

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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].