Goreinu alternatives and similar packages
Based on the "Debug" category.
Alternatively, view Goreinu alternatives based on common mentions on social networks and blogs.
-
Android Debug Database
A library for debugging android databases and shared preferences - Make Debugging Great Again -
Linx
Lynx is an Android library created to show a custom view with all the information Android logcat is printing, different traces of different levels will be rendererd to show from log messages to your application exceptions. You can filter this traces, share your logcat to other apps, configure the max number of traces to show or the sampling rate used by the library. -
android-grid-wichterle
This app will show grid overlay over whole system which helps you to verify your excellent app design. -
Under the Hood
Under the Hood is a flexible and powerful Android debug view library. It uses a modular template system that can be easily extended to your needs, although coming with many useful elements built-in. -
Android Snooper
Android library to record the network calls through the interceptor mechanism of the http clients. -
AndroidMiniDebugger
A small tool to log your application inside your application with a floating UI component -
AppSpector
Remote Android and iOS debugging and data collection service. You can debug networking, logs, SQLite and mock device's geo location.
CodeRabbit: AI Code Reviews for Developers
* 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 Goreinu or a related project?
README
Goreinu
Goreinu allows to copy application files on sdcard.(/data/data/package_name/... -> /sdcard/Goreinu/package_name
).
Getting started
In your build.gradle
:
dependencies {
debugCompile 'kgmyshin:goreinu:0.0.10'
releaseCompile 'kgmyshin:goreinu-no-op:0.0.10'
}
In your Application
class:
public class ExampleApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Goreinu.install(this);
}
}
How to Run copy
There are two ways.
- click this icon in launcher. (In the your release variant, This icon is never shown.)
- send intent from adb.
adb shell am broadcast -a com.kgmyshin.goreinu.intent
License
Copyright 2015 kgmyshin
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 Goreinu README section above
are relevant to that project's source code only.