Skip to content
This repository has been archived by the owner on Jun 16, 2023. It is now read-only.

Error creating media file. #673

Closed
Borisboky opened this issue Apr 21, 2017 · 13 comments
Closed

Error creating media file. #673

Borisboky opened this issue Apr 21, 2017 · 13 comments

Comments

@Borisboky
Copy link

I'm getting an Error creating media file error on android simulator when I try to take a picture.

My code is as follows:

takePicture() {
        this.camera.capture({target: Camera.constants.CaptureTarget.disk})
            .then(data => this.props.pictureTaken(data);)
            .catch(err => console.error(err));
    }

render() {
        return (
            <View style={styles.container}>
                <Camera
                    ref={(cam) => {
                            this.camera = cam;
                          }}
                    style={styles.preview}
                    aspect={Camera.constants.Aspect.Fill}>
                </Camera>

                <View style={styles.footer}>
                    <View style={styles.footerButton}>
                        <TouchableHighlight onPress={this.takePicture.bind(this)} underlayColor='#ff1c4d'>
                            <View style={styles.contentFooterButton}>
                                <Icon
                                    name='ios-camera-outline'
                                    size={25}
                                    style={styles.icon}/>
                                <Text style={styles.footerButtonText}>Picture</Text>
                            </View>
                        </TouchableHighlight>
                    </View>
                </View>
            </View>
        );
    }       

When takePicture function is called I get the error.

I use :

  • node v6.9.1
  • react-native: 0.41.2
  • Android simulator : Android 6.0

package.json :

@diegocouto
Copy link

Hi, @Borisboky!

Are you sure you have updated your AndroidManifest file with the right permissions?

<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.RECORD_VIDEO"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

@Borisboky
Copy link
Author

Hi @diegocouto,

Yes, I'm sure. See photo :
screen shot 2017-04-21 at 16 18 15

@npomfret
Copy link
Collaborator

The simulator doesn't have a camera... does it!?

@Borisboky
Copy link
Author

@npomfret It's the same problem on the device. The app crashes if the takePicture() function gets called.

@npomfret
Copy link
Collaborator

ok, do you have a stack trace from logcat? I suspect its running out of memory trying to rotate the image. If so, would you mind testing my PR which possibly works around the issue?

#682

@Borisboky
Copy link
Author

Borisboky commented Apr 25, 2017

With react-native log-android I get
screen shot 2017-04-25 at 09 23 56

Thus,

04-25 09:23:47.608 2394 2550 E ReactNativeJS: { [Error: Error creating media file.] framesToPop: 1, code: 'EUNSPECIFIED' } is what I get when the function takePicture() gets called.

@npomfret
Copy link
Collaborator

Hmm, there does seem to be enough information there. The output of logcat is usually much more verbose, and when your app crashes there's usually a stack trace. I can't think of a way to help you without that information. Have you tried running it directly from android studio? The Android Montitor tab shows the full log cat from your device.

@Borisboky
Copy link
Author

If I show all error using adb logcat "*:E" I get

Boriss-MacBook-Pro:autralis-mobile boris$ adb logcat "*:E"
--------- beginning of main
--------- beginning of system
04-25 09:44:30.911  1229  1229 E         : batterystats service unavailable!
04-25 09:44:30.912  1229  1229 E         : batterystats service unavailable!
04-25 09:44:30.914  1229  1229 E         : batterystats service unavailable!
04-25 09:44:30.914  1229  1229 E         : batterystats service unavailable!
04-25 09:44:30.975  1186  1186 E libEGL  : load_driver(/system/lib64/egl/libGLES_emulation.so): dlopen failed: library "/system/lib64/egl/libGLES_emulation.so" not found
04-25 09:44:31.098  1186  1186 E SurfaceFlinger: hwcomposer module not found
04-25 09:44:31.110  1186  1186 E cutils-trace: Error opening trace file: Permission denied (13)
04-25 09:44:31.327  1186  1243 E SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
04-25 09:44:31.380  1261  1268 E libEGL  : load_driver(/system/lib64/egl/libGLES_emulation.so): dlopen failed: library "/system/lib64/egl/libGLES_emulation.so" not found
04-25 09:44:31.409  1261  1268 E cutils-trace: Error opening trace file: Permission denied (13)
04-25 09:44:31.932  1229  1229 E cutils-trace: Error opening trace file: Permission denied (13)
04-25 09:44:31.936  1229  1229 E CameraService: setUpVendorTags: Vendor tag operations not fully defined. Ignoring definitions.
04-25 09:44:33.148  1232  1232 E libEGL  : load_driver(/system/lib64/egl/libGLES_emulation.so): dlopen failed: library "/system/lib64/egl/libGLES_emulation.so" not found
04-25 09:44:33.162  1233  1233 E libEGL  : load_driver(/system/lib/egl/libGLES_emulation.so): dlopen failed: library "/system/lib/egl/libGLES_emulation.so" not found
04-25 09:44:33.170  1232  1232 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-en-us.pat.txt
04-25 09:44:33.170  1232  1232 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-en-us.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.170  1232  1232 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.170  1232  1232 E Hyphenator: 	... 7 more
04-25 09:44:33.171  1232  1232 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-eu.pat.txt
04-25 09:44:33.171  1232  1232 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-eu.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.171  1232  1232 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	... 7 more
04-25 09:44:33.171  1232  1232 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-hu.pat.txt
04-25 09:44:33.171  1232  1232 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-hu.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.171  1232  1232 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	... 7 more
04-25 09:44:33.171  1232  1232 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-hy.pat.txt
04-25 09:44:33.171  1232  1232 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-hy.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.171  1232  1232 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	... 7 more
04-25 09:44:33.171  1232  1232 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-nb.pat.txt
04-25 09:44:33.171  1232  1232 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-nb.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.171  1232  1232 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	... 7 more
04-25 09:44:33.171  1232  1232 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-nn.pat.txt
04-25 09:44:33.171  1232  1232 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-nn.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.171  1232  1232 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	... 7 more
04-25 09:44:33.171  1232  1232 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-sa.pat.txt
04-25 09:44:33.171  1232  1232 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-sa.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.171  1232  1232 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	... 7 more
04-25 09:44:33.171  1232  1232 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-und-ethi.pat.txt
04-25 09:44:33.171  1232  1232 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-und-ethi.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.171  1232  1232 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.171  1232  1232 E Hyphenator: 	... 7 more
04-25 09:44:33.212  1233  1233 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-en-us.pat.txt
04-25 09:44:33.212  1233  1233 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-en-us.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.212  1233  1233 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	... 7 more
04-25 09:44:33.212  1233  1233 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-eu.pat.txt
04-25 09:44:33.212  1233  1233 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-eu.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.212  1233  1233 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	... 7 more
04-25 09:44:33.212  1233  1233 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-hu.pat.txt
04-25 09:44:33.212  1233  1233 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-hu.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.212  1233  1233 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.212  1233  1233 E Hyphenator: 	... 7 more
04-25 09:44:33.213  1233  1233 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-hy.pat.txt
04-25 09:44:33.213  1233  1233 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-hy.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.213  1233  1233 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	... 7 more
04-25 09:44:33.213  1233  1233 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-nb.pat.txt
04-25 09:44:33.213  1233  1233 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-nb.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.213  1233  1233 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	... 7 more
04-25 09:44:33.213  1233  1233 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-nn.pat.txt
04-25 09:44:33.213  1233  1233 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-nn.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.213  1233  1233 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	... 7 more
04-25 09:44:33.213  1233  1233 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-sa.pat.txt
04-25 09:44:33.213  1233  1233 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-sa.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.213  1233  1233 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	... 7 more
04-25 09:44:33.213  1233  1233 E Hyphenator: error loading hyphenation /system/usr/hyphen-data/hyph-und-ethi.pat.txt
04-25 09:44:33.213  1233  1233 E Hyphenator: java.io.FileNotFoundException: /system/usr/hyphen-data/hyph-und-ethi.pat.txt: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils$FileReader.<init>(IoUtils.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoUtils.readFileAsString(IoUtils.java:114)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.loadHyphenator(Hyphenator.java:96)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at android.text.Hyphenator.init(Hyphenator.java:154)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preloadTextResources(ZygoteInit.java:207)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.preload(ZygoteInit.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
04-25 09:44:33.213  1233  1233 E Hyphenator: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:33.213  1233  1233 E Hyphenator: 	... 7 more
04-25 09:44:33.253  1230  1230 E installd: eof
04-25 09:44:33.253  1230  1230 E installd: failed to read size
04-25 09:44:33.426  1460  1460 E PowerManagerService-JNI: Couldn't load power module (No such file or directory)
04-25 09:44:33.436  1186  1243 E SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
04-25 09:44:33.527  1460  1460 E art     : DexFile_getDexOptNeeded file '/system/framework/org.apache.http.legacy.jar' does not exist
04-25 09:44:33.535  1460  1460 E art     : DexFile_getDexOptNeeded file '/system/framework/org.apache.http.legacy.jar' does not exist
04-25 09:44:33.824  1222  1222 E Netd    : cannot find interface dummy0
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: Failed to read cpu-freq
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: java.io.FileNotFoundException: /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at java.io.FileInputStream.<init>(FileInputStream.java:76)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at java.io.FileInputStream.<init>(FileInputStream.java:103)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at java.io.FileReader.<init>(FileReader.java:66)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at com.android.internal.os.KernelCpuSpeedReader.readDelta(KernelCpuSpeedReader.java:49)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at com.android.internal.os.BatteryStatsImpl.updateCpuTimeLocked(BatteryStatsImpl.java:8002)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at com.android.internal.os.BatteryStatsImpl$MyHandler.handleMessage(BatteryStatsImpl.java:155)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at android.os.Handler.dispatchMessage(Handler.java:102)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at android.os.Looper.loop(Looper.java:148)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at android.os.HandlerThread.run(HandlerThread.java:61)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at com.android.server.ServiceThread.run(ServiceThread.java:46)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:34.660  1460  1492 E KernelCpuSpeedReader: 	... 10 more
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: Failed to read uid_cputime
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: java.io.FileNotFoundException: /proc/uid_cputime/show_uid_stat: open failed: ENOENT (No such file or directory)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at java.io.FileInputStream.<init>(FileInputStream.java:76)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at java.io.FileInputStream.<init>(FileInputStream.java:103)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at java.io.FileReader.<init>(FileReader.java:66)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at com.android.internal.os.KernelUidCpuTimeReader.readDelta(KernelUidCpuTimeReader.java:71)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at com.android.internal.os.BatteryStatsImpl.updateCpuTimeLocked(BatteryStatsImpl.java:8031)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at com.android.internal.os.BatteryStatsImpl$MyHandler.handleMessage(BatteryStatsImpl.java:155)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at android.os.Handler.dispatchMessage(Handler.java:102)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at android.os.Looper.loop(Looper.java:148)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at android.os.HandlerThread.run(HandlerThread.java:61)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at com.android.server.ServiceThread.run(ServiceThread.java:46)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:34.660  1460  1492 E KernelUidCpuTimeReader: 	... 10 more
04-25 09:44:34.705  1460  1460 E ConsumerIrService: Can't open consumer IR HW Module, error: -2
04-25 09:44:34.792  1460  1566 E EventHub: could not get driver version for /dev/input/mice, Not a typewriter
04-25 09:44:34.837  1186  1186 E SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
04-25 09:44:34.953  1229  1577 E AudioFlinger: no wake lock to update!
04-25 09:44:34.956  1229  1229 E audio_hw_generic: Error opening input stream format 1, channel_mask 0010, sample_rate 16000
04-25 09:44:34.956  1229  1229 E AudioFlinger: int android::load_audio_interface(const char*, audio_hw_device_t**) couldn't load audio hw module audio.r_submix (No such file or directory)
04-25 09:44:34.957  1229  1229 E SoundTriggerHwService: couldn't load sound trigger module sound_trigger.primary (No such file or directory)
04-25 09:44:34.957  1229  1229 E RadioService: couldn't load radio module radio.primary (No such file or directory)
04-25 09:44:35.166  1241  1241 E FingerprintHal: Could not load fingerprints from storage at /data/system/users/0/fpdata/emulator_fingerprint_storage.bin; it has not yet been created.
04-25 09:44:35.231  1460  1460 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/gatekeeper.password.key: open failed: ENOENT (No such file or directory)
04-25 09:44:35.231  1460  1460 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/password.key: open failed: ENOENT (No such file or directory)
04-25 09:44:35.231  1460  1460 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/gatekeeper.pattern.key: open failed: ENOENT (No such file or directory)
04-25 09:44:35.231  1460  1460 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/gatekeeper.gesture.key: open failed: ENOENT (No such file or directory)
04-25 09:44:35.231  1460  1460 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/gesture.key: open failed: ENOENT (No such file or directory)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: Failed to read cpu-freq
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: java.io.FileNotFoundException: /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at java.io.FileInputStream.<init>(FileInputStream.java:76)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at java.io.FileInputStream.<init>(FileInputStream.java:103)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at java.io.FileReader.<init>(FileReader.java:66)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at com.android.internal.os.KernelCpuSpeedReader.readDelta(KernelCpuSpeedReader.java:49)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at com.android.internal.os.BatteryStatsImpl.updateCpuTimeLocked(BatteryStatsImpl.java:8002)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at com.android.internal.os.BatteryStatsImpl$MyHandler.handleMessage(BatteryStatsImpl.java:155)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at android.os.Handler.dispatchMessage(Handler.java:102)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at android.os.Looper.loop(Looper.java:148)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at android.os.HandlerThread.run(HandlerThread.java:61)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at com.android.server.ServiceThread.run(ServiceThread.java:46)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:35.365  1460  1492 E KernelCpuSpeedReader: 	... 10 more
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: Failed to read uid_cputime
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: java.io.FileNotFoundException: /proc/uid_cputime/show_uid_stat: open failed: ENOENT (No such file or directory)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at libcore.io.IoBridge.open(IoBridge.java:452)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at java.io.FileInputStream.<init>(FileInputStream.java:76)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at java.io.FileInputStream.<init>(FileInputStream.java:103)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at java.io.FileReader.<init>(FileReader.java:66)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at com.android.internal.os.KernelUidCpuTimeReader.readDelta(KernelUidCpuTimeReader.java:71)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at com.android.internal.os.BatteryStatsImpl.updateCpuTimeLocked(BatteryStatsImpl.java:8031)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at com.android.internal.os.BatteryStatsImpl$MyHandler.handleMessage(BatteryStatsImpl.java:155)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at android.os.Handler.dispatchMessage(Handler.java:102)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at android.os.Looper.loop(Looper.java:148)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at android.os.HandlerThread.run(HandlerThread.java:61)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at com.android.server.ServiceThread.run(ServiceThread.java:46)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at libcore.io.Posix.open(Native Method)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at libcore.io.BlockGuardOs.open(BlockGuardOs.java:186)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	at libcore.io.IoBridge.open(IoBridge.java:438)
04-25 09:44:35.365  1460  1492 E KernelUidCpuTimeReader: 	... 10 more
04-25 09:44:35.668  1628  1689 E WVMExtractor: Failed to open libwvm.so: dlopen failed: library "libwvm.so" not found
04-25 09:44:35.748  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/iptables -w -F st_penalty_log
04-25 09:44:35.761  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/ip6tables -w -F st_penalty_log
04-25 09:44:35.764  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/iptables -w -F st_penalty_reject
04-25 09:44:35.769  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/ip6tables -w -F st_penalty_reject
04-25 09:44:35.773  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/iptables -w -F st_clear_caught
04-25 09:44:35.777  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/ip6tables -w -F st_clear_caught
04-25 09:44:35.782  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/iptables -w -F st_clear_detect
04-25 09:44:35.798  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/ip6tables -w -F st_clear_detect
04-25 09:44:35.810  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/iptables -w -X st_penalty_log
04-25 09:44:35.823  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/ip6tables -w -X st_penalty_log
04-25 09:44:35.841  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/iptables -w -X st_penalty_reject
04-25 09:44:35.849  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/ip6tables -w -X st_penalty_reject
04-25 09:44:35.860  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/iptables -w -X st_clear_caught
04-25 09:44:35.870  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/ip6tables -w -X st_clear_caught
04-25 09:44:35.878  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/iptables -w -X st_clear_detect
04-25 09:44:35.886  1222  1553 E Netd    : exec() res=0, status=256 for /system/bin/ip6tables -w -X st_clear_detect
04-25 09:44:36.202  1460  1587 E BluetoothAdapter: Bluetooth binder is null
04-25 09:44:36.203  1460  1587 E BluetoothAdapter: Bluetooth binder is null
04-25 09:44:36.212  1460  1460 E InputMethodManagerService: Ignoring updateSystemUiLocked due to an invalid token. uid:1000 token:null
04-25 09:44:36.226  1460  1490 E GpsLocationProvider: no AGPS interface in set_agps_server
04-25 09:44:36.226  1460  1460 E LocationManagerService: no geocoder provider found
04-25 09:44:36.227  1460  1460 E FlpHardwareProvider: Error hw_get_module 'flp': -2
04-25 09:44:36.227  1460  1460 E LocationManagerService: FLP HAL not supported
04-25 09:44:36.227  1460  1460 E LocationManagerService: Unable to bind FLP Geofence proxy.
04-25 09:44:36.227  1460  1460 E ActivityRecognitionHardware: Error hw_get_module: -2
04-25 09:44:36.227  1460  1460 E LocationManagerService: Hardware Activity-Recognition not supported.
04-25 09:44:36.245  1460  1825 E WVMExtractor: Failed to open libwvm.so: dlopen failed: library "libwvm.so" not found
04-25 09:44:36.286  1460  1490 E GpsLocationProvider: no AGPS interface in set_agps_server
04-25 09:44:36.504  1460  1460 E BluetoothAdapter: Bluetooth binder is null
04-25 09:44:36.527  1460  1460 E BluetoothAdapter: Bluetooth binder is null
04-25 09:44:36.531  1460  1460 E BluetoothAdapter: Bluetooth binder is null
04-25 09:44:36.768  1628  1628 E BluetoothAdapter: Bluetooth binder is null
04-25 09:44:36.827  1229  1942 E CameraService: getCameraPriorityFromProcState: Received invalid process state -1 from ActivityManagerService!
04-25 09:44:36.836  1229  1971 E WVMExtractor: Failed to open libwvm.so: dlopen failed: library "libwvm.so" not found
04-25 09:44:36.872  1229  1942 E CameraService: disconnect: Disconnect called on already disconnected client for device 0
04-25 09:44:36.959  1186  1598 E SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
04-25 09:44:37.005  1857  1988 E DcSwitchStateMachine-0: DctController is not ready
04-25 09:44:37.014  1460  1582 E ConnectivityService: Failed to find Messenger in unregisterNetworkFactory
04-25 09:44:37.092  1186  1598 E SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
04-25 09:44:37.200  1186  1186 E SurfaceFlinger: rejecting buffer: bufWidth=1080, bufHeight=1920, front.active.{w=1, h=1}
04-25 09:44:37.231  1857  1857 E BluetoothAdapter: Bluetooth binder is null
04-25 09:44:37.472  1857  1857 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC
04-25 09:44:37.885  1857  1857 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC
04-25 09:44:38.245  1857  1988 E DcSwitchStateMachine-0: EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED
04-25 09:44:38.350  1867  2034 E Surface : getSlotFromBufferLocked: unknown buffer: 0x7f4bd0d5a080
04-25 09:44:38.443  1857  1857 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC
04-25 09:44:38.484  1867  1867 E CellLayout: Ignoring an error while restoring a view instance state
04-25 09:44:38.484  1867  1867 E CellLayout: java.lang.IllegalArgumentException: Wrong state class, expecting View State but received class android.appwidget.AppWidgetHostView$ParcelableSparseArray instead. This usually happens when two views of different type have the same id in the same hierarchy. This view's id is id/0x4. Make sure other views do not use the same id.
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.view.View.onRestoreInstanceState(View.java:14771)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.widget.TextView.onRestoreInstanceState(TextView.java:4058)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.view.View.dispatchRestoreInstanceState(View.java:14746)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.view.ViewGroup.dispatchRestoreInstanceState(ViewGroup.java:3127)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.view.ViewGroup.dispatchRestoreInstanceState(ViewGroup.java:3127)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at com.android.launcher3.CellLayout.restoreInstanceState(CellLayout.java:564)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at com.android.launcher3.Workspace.restoreInstanceStateForChild(Workspace.java:3899)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at com.android.launcher3.Launcher.onRestoreInstanceState(Launcher.java:1952)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.app.Activity.performRestoreInstanceState(Activity.java:959)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.app.Instrumentation.callActivityOnRestoreInstanceState(Instrumentation.java:1163)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2389)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:4077)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.app.ActivityThread.-wrap15(ActivityThread.java)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1350)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.os.Handler.dispatchMessage(Handler.java:102)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.os.Looper.loop(Looper.java:148)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at android.app.ActivityThread.main(ActivityThread.java:5417)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at java.lang.reflect.Method.invoke(Native Method)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
04-25 09:44:38.484  1867  1867 E CellLayout: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
04-25 09:44:38.678  1857  1857 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC
04-25 09:44:38.712  1857  1988 E DcSwitchStateMachine-0: EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED
04-25 09:44:38.791  1460  1490 E GpsLocationProvider: no AGPS interface in set_agps_server
04-25 09:44:38.838  1460  1490 E GpsLocationProvider: no AGPS interface in set_agps_server
04-25 09:44:38.949  1460  1490 E GpsLocationProvider: no AGPS interface in set_agps_server
04-25 09:44:39.033  1261  1268 E Surface : getSlotFromBufferLocked: unknown buffer: 0x7f40f73d5380
04-25 09:44:39.079  1460  1490 E GpsLocationProvider: no AGPS interface in set_agps_server
04-25 09:44:39.664  1628  1984 E Surface : getSlotFromBufferLocked: unknown buffer: 0x7f4bbd7448b0
04-25 09:44:39.831  1460  1490 E GpsLocationProvider: no AGPS interface in set_agps_server
04-25 09:44:39.836  1628  1984 E Surface : getSlotFromBufferLocked: unknown buffer: 0x7f4bbd744c30
04-25 09:44:40.304  1460  1490 E GpsLocationProvider: no AGPS interface in set_agps_server
04-25 09:44:40.413  1460  1490 E GpsLocationProvider: no AGPS interface in set_agps_server
04-25 09:44:40.564  1857  1857 E CarrierConfigLoader: Failed to get package version for: com.android.carrierconfig
04-25 09:44:41.557  2247  2247 E ActivityThread: Service com.android.email.service.EmailBroadcastProcessorService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@80b75de that was originally bound here
04-25 09:44:41.557  2247  2247 E ActivityThread: android.app.ServiceConnectionLeaked: Service com.android.email.service.EmailBroadcastProcessorService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@80b75de that was originally bound here
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1092)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:986)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1303)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at android.app.ContextImpl.bindService(ContextImpl.java:1286)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at android.content.ContextWrapper.bindService(ContextWrapper.java:604)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:181)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at com.android.emailcommon.service.ServiceProxy.test(ServiceProxy.java:224)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at com.android.email.service.EmailServiceUtils.isServiceAvailable(EmailServiceUtils.java:160)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at com.android.email.provider.AccountReconciler.reconcileAccountsInternal(AccountReconciler.java:171)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at com.android.email.provider.AccountReconciler.reconcileAccounts(AccountReconciler.java:115)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at com.android.email.service.EmailBroadcastProcessorService.reconcileAndStartServices(EmailBroadcastProcessorService.java:305)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at com.android.email.service.EmailBroadcastProcessorService.onBootCompleted(EmailBroadcastProcessorService.java:295)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at com.android.email.service.EmailBroadcastProcessorService.onHandleIntent(EmailBroadcastProcessorService.java:130)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:66)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at android.os.Handler.dispatchMessage(Handler.java:102)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at android.os.Looper.loop(Looper.java:148)
04-25 09:44:41.557  2247  2247 E ActivityThread: 	at android.os.HandlerThread.run(HandlerThread.java:61)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: RuntimeException when trying to unbind from service
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: java.lang.IllegalArgumentException: Service not registered: com.android.emailcommon.service.ServiceProxy$ProxyConnection@80b75de
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at android.app.LoadedApk.forgetServiceDispatcher(LoadedApk.java:1044)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at android.app.ContextImpl.unbindService(ContextImpl.java:1337)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at android.content.ContextWrapper.unbindService(ContextWrapper.java:616)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at com.android.emailcommon.service.ServiceProxy$ProxyConnection$1.doInBackground(ServiceProxy.java:124)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at com.android.emailcommon.service.ServiceProxy$ProxyConnection$1.doInBackground(ServiceProxy.java:113)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at android.os.AsyncTask$2.call(AsyncTask.java:295)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at java.util.concurrent.FutureTask.run(FutureTask.java:237)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:234)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
04-25 09:44:41.588  2247  2288 E EmailServiceProxy: 	at java.lang.Thread.run(Thread.java:818)
04-25 09:45:53.181  1628  1984 E Surface : getSlotFromBufferLocked: unknown buffer: 0x7f4bbd745560
04-25 09:45:56.557  1186  1319 E SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
04-25 09:45:56.691  1867  2034 E Surface : getSlotFromBufferLocked: unknown buffer: 0x7f4bca8ac5b0
04-25 09:45:57.234  2315  2340 E ReactNativeJS: Hot loading isn't working because it cannot connect to the development server.
04-25 09:45:57.234  2315  2340 E ReactNativeJS:
04-25 09:45:57.234  2315  2340 E ReactNativeJS: Try the following to fix the issue:
04-25 09:45:57.234  2315  2340 E ReactNativeJS: - Ensure that the packager server is running and available on the same network
04-25 09:45:57.234  2315  2340 E ReactNativeJS: - Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run 'adb devices' to see a list of connected devices
04-25 09:45:57.234  2315  2340 E ReactNativeJS: - If you're on a physical device connected to the same machine, run 'adb reverse tcp:8081 tcp:8081' to forward requests from your device
04-25 09:45:57.234  2315  2340 E ReactNativeJS: - If your device is on the same Wi-Fi network, set 'Debug server host & port for device' in 'Dev settings' to your machine's IP address and the port of the local dev server - e.g. 10.0.1.1:8081
04-25 09:45:57.234  2315  2340 E ReactNativeJS:
04-25 09:45:57.234  2315  2340 E ReactNativeJS: URL: 10.0.2.2:8081
04-25 09:45:57.234  2315  2340 E ReactNativeJS:
04-25 09:45:57.234  2315  2340 E ReactNativeJS: Error: Failed to connect to /10.0.2.2:8081
04-25 09:46:41.252  2448  2448 E memtrack: Couldn't load memtrack module (No such file or directory)
04-25 09:46:41.252  2448  2448 E android.os.Debug: failed to load memtrack module: -2
04-25 09:46:41.726  2457  2457 E memtrack: Couldn't load memtrack module (No such file or directory)
04-25 09:46:41.726  2457  2457 E android.os.Debug: failed to load memtrack module: -2
04-25 09:46:41.996  2469  2469 E memtrack: Couldn't load memtrack module (No such file or directory)
04-25 09:46:41.997  2469  2469 E android.os.Debug: failed to load memtrack module: -2
04-25 09:46:42.912  2480  2480 E memtrack: Couldn't load memtrack module (No such file or directory)
04-25 09:46:42.912  2480  2480 E android.os.Debug: failed to load memtrack module: -2
04-25 09:46:43.515  2503  2503 E cutils-trace: Error opening trace file: Permission denied (13)
04-25 09:46:46.629  1460  1565 E InputDispatcher: channel '42fbc95 com.autralismobile/com.autralismobile.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
04-25 09:46:46.629  1460  1565 E InputDispatcher: channel 'f11913  (server)' ~ Channel is unrecoverably broken and will be disposed!
04-25 09:46:46.710  1230  1230 E installd: Couldn't opendir /data/app/vmdl2054508254.tmp: No such file or directory
04-25 09:46:47.584  2527  2527 E memtrack: Couldn't load memtrack module (No such file or directory)
04-25 09:46:47.584  2527  2527 E android.os.Debug: failed to load memtrack module: -2
04-25 09:46:47.800  1186  1245 E SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
04-25 09:46:48.006  1867  2034 E Surface : getSlotFromBufferLocked: unknown buffer: 0x7f4bbe7ca3f0
04-25 09:46:49.593  2536  2557 E Surface : getSlotFromBufferLocked: unknown buffer: 0xedbf1770
04-25 09:47:00.881  1186  1245 E SurfaceFlinger: ro.sf.lcd_density must be defined as a build property
04-25 09:47:03.042  1828  2593 E Surface : getSlotFromBufferLocked: unknown buffer: 0x7f4bd0d5aa90
04-25 09:47:07.979  1229  1760 E CameraService: disconnect: Disconnect called on already disconnected client for device 0
04-25 09:47:10.149  2536  2613 E WVMExtractor: Failed to open libwvm.so: dlopen failed: library "libwvm.so" not found
04-25 09:47:11.834  2536  2550 E RCTCameraModule: failed to create directory:/sdcard/Pictures
04-25 09:47:11.837  2536  2567 E ReactNativeJS: { [Error: Error creating media file.] framesToPop: 1, code: 'EUNSPECIFIED' }
04-25 09:47:12.900  2536  2557 E OpenGLRenderer: GL error:  GL_INVALID_VALUE
04-25 09:48:23.147  2536  2557 E Surface : getSlotFromBufferLocked: unknown buffer: 0xedbf5750
04-25 09:48:23.366  2536  2557 E Surface : getSlotFromBufferLocked: unknown buffer: 0xedbf5750
04-25 09:48:23.907  1229  1765 E CameraService: disconnect: Disconnect called on already disconnected client for device 0
04-25 09:48:30.093  1828  2593 E Surface : getSlotFromBufferLocked: unknown buffer: 0x7f4bd0d5aa20
04-25 09:48:33.242  1229  1579 E CameraService: disconnect: Disconnect called on already disconnected client for device 0
04-25 09:48:37.291  2536  2550 E RCTCameraModule: failed to create directory:/sdcard/Pictures
04-25 09:48:37.293  2536  2686 E ReactNativeJS: { [Error: Error creating media file.] framesToPop: 1, code: 'EUNSPECIFIED' }

@npomfret
Copy link
Collaborator

There are an awful lot of FileNotFound exceptions in your log. That doesn't look healthy. Is the device working properly? Have you tried creating a file on it using something like react-native-fs?

@Borisboky
Copy link
Author

Yes. Everything else works fine. I used react-native-fs but I deleted it and I don't use it anymore.

@Borisboky
Copy link
Author

@npomfret I think that I found what the problem was. The buildToolsVersion in the build.gradle file was "23.0.2" I just changed it manually to "25.0.3" and now it works.

@nicgutierrez
Copy link

Hey, I'm having the exact same issue but changing the buildToolsVersion to 25.0.3 didn't make any difference. Still failing. Any ideas?

@npomfret
Copy link
Collaborator

Again, can you paste the stack trance in here. I'm surprised changing the tools version has fixed it, that doesn't make much sense to me at the moment.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants