We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39eb402 commit b110113Copy full SHA for b110113
android/src/main/java/com/imagepicker/ImagePickerModule.java
@@ -23,9 +23,10 @@
23
public class ImagePickerModule extends ReactContextBaseJavaModule implements ActivityEventListener {
24
static final String NAME = "ImagePickerManager";
25
26
- static final int REQUEST_LAUNCH_IMAGE_CAPTURE = 13001;
27
- static final int REQUEST_LAUNCH_VIDEO_CAPTURE = 13002;
28
- static final int REQUEST_LAUNCH_LIBRARY = 13003;
+ // Public to let consuming apps hook into the image picker response
+ public static final int REQUEST_LAUNCH_IMAGE_CAPTURE = 13001;
+ public static final int REQUEST_LAUNCH_VIDEO_CAPTURE = 13002;
29
+ public static final int REQUEST_LAUNCH_LIBRARY = 13003;
30
31
private Uri fileUri;
32
0 commit comments