I hereby claim:
- I am eduardb on github.
- I am eduardcb (https://keybase.io/eduardcb) on keybase.
- I have a public key ASDa-r3vz_hG8xFfpAHG1AvluchNlQDjmg8YfBcdOZwKWQo
To claim this, I am signing this object:
| public class CountingFileRequestBody extends RequestBody { | |
| private static final int SEGMENT_SIZE = 2048; // okio.Segment.SIZE | |
| private final File file; | |
| private final ProgressListener listener; | |
| private final String contentType; | |
| public CountingFileRequestBody(File file, String contentType, ProgressListener listener) { | |
| this.file = file; |
| public class CustomMultiPartEntity implements HttpEntity | |
| { | |
| private final ProgressListener progressListener; | |
| private HttpEntity mHttpEntity; | |
| public CustomMultiPartEntity(ProgressListener progressListener, HttpEntity httpEntity) | |
| { | |
| this.progressListener = progressListener; | |
| mHttpEntity = httpEntity; |
| package com.deveddy.contextcompat; | |
| import android.annotation.SuppressLint; | |
| import android.app.ActivityManager; | |
| import android.app.AlarmManager; | |
| import android.app.DownloadManager; | |
| import android.app.KeyguardManager; | |
| import android.app.NotificationManager; | |
| import android.app.SearchManager; | |
| import android.app.UiModeManager; |
I hereby claim:
To claim this, I am signing this object:
This gist provides a more flexible version of adb that exposes the functionality to select a device and then use that device's serial number in one or more adb commands. It expands on the initial implementation of the deeplinks.sh gist.
Companion blog post for usage is 🔗 here.
Companion posts for earlier versions of the script: Extending an Interactive ADB