Popularity
1.4
Stable
Activity
0.0
Stable
32
2
3

Code Quality Rank: L5
Programming language: Java
License: GNU General Public License v3.0 or later
Tags: Debug    

Goreinu alternatives and similar packages

Based on the "Debug" category.
Alternatively, view Goreinu alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Goreinu or a related project?

Add another 'Debug' Package

README

Android Arsenal

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.