mirror of
https://github.com/status-im/react-native-camera.git
synced 2026-08-31 13:41:08 +00:00
(android): Missing ; on constructor (#880)
On the RCTCameraModule is missing a ';' causing a build failure.
This commit is contained in:
committed by
Zack Story
parent
618f5ec92f
commit
537b7696b4
@@ -88,7 +88,7 @@ public class RCTCameraModule extends ReactContextBaseJavaModule
|
||||
_reactContext = reactContext;
|
||||
_sensorOrientationChecker = new RCTSensorOrientationChecker(_reactContext);
|
||||
_reactContext.addLifecycleEventListener(this);
|
||||
sound.load(MediaActionSound.SHUTTER_CLICK)
|
||||
sound.load(MediaActionSound.SHUTTER_CLICK);
|
||||
}
|
||||
|
||||
public static ReactApplicationContext getReactContextSingleton() {
|
||||
|
||||
Reference in New Issue
Block a user