Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 654 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 654 Bytes

Puller

IntelliJ Plugin which enables you quick download your Android applications internal data files.

======

  1. Add puller-android-1.0.jar to your Android project dependencies.
  2. Register broadcast receiver component in AndroidManifest.xml:
<receiver
    android:name="com.adamstyrc.puller.debugutils.PullerReceiver"
    android:enabled="true"
    android:exported="true" >
    <intent-filter>
        <action android:name="pl.adamstyrc.puller.intent.DEBUG"></action>
    </intent-filter>
</receiver>
  1. Open Puller tab in IntelliJ/Android Studio and pull the data. The data will be downloaded to selected path on your desktop disc.