Fail to connect to camera service Android java RuntimeException
Stack-trace:
FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to start activity ComponentInfo {com.code2care.tools
.app/com.code2care.tools.app.MainActivity}:
java.lang.RuntimeException: Fail to connect to camera service
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1651)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:2836)
at android.app.ActivityThread.access$1600(ActivityThread.java:117)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:939)
at android.app.ActivityThread.main(ActivityThread.java:3687)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:878)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.RuntimeException: Fail to connect to camera service
at android.hardware.Camera.native_setup(Native Method)
at android.hardware.Camera.<init>(Camera.java:291)
at android.hardware.Camera.open(Camera.java:266)
at com.code2care.tools.app.MainActivity.onCreate(MainActivity.java:59)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
... 12 more
You have used the Camara hardware java code in your Android application everything seems fine with no errors in eclipse project files, but it fails on runtime ?
Reason: Any hardware you use like Bluetooth, Camara, Wifi, or other sensors you need to get the Permissions from the user that your app wants them. To do so you need to add this code in the AndroidManifest.xml file.
For Camara App add the following lines :
<uses-permission android:name = "android.permission.CAMERA"/>
Try running the App now you will not the Camara RuntimeException exception.
More Posts related to Android,
- Increase Android Emulator Timeout time
- Android : Remove ListView Separator/divider programmatically or using xml property
- Error : Invalid key hash.The key hash does not match any stored key hashes
- How to Change Android Toast Position?
- Android Alert Dialog with Checkboxes example
- Android : No Launcher activity found! Error
- Android Development: Spinners with Example
- Failed to sync Gradle project Error:failed to find target android-23
- INSTALL_FAILED_INSUFFICIENT_STORAGE Android Error
- Disable Fading Edges Scroll Effect Android Views
- How to create Toast messages in Android?
- Channel 50 SMSes received every few minutes Android Phones
- Android xml error Attribute is missing the Android namespace prefix [Solution]
- Create Custom Android AlertDialog
- How To Disable Landscape Mode in Android Application
- Android Development - How to switch between two Activities
- incorrect line ending: found carriage return (\r) without corresponding newline (\n)
- Generate Facebook Android SDK keyhash using java code
- Android Error Generating Final Archive - Debug Certificate Expired
- 21 Useful Android Emulator Short-cut Keyboard Keys
- Android RatingBar Example
- 11 Weeks of Android Online Sessions-15-Jun-to-28-Aug-2020
- Download interrupted: Unknown Host dl-ssl.google.com Error Android SDK Manager
- fill_parent vs match_parent vs wrap_content
- Android : Connection with adb was interrupted 0 attempts have been made to reconnect
More Posts:
- cURL Option to show HTTP Response Status Code - cURL
- How to Find Where Mac Terminal App is Located? - MacOS
- Download Google Chrome setup exe file using PowerShell - Powershell
- How to install pip on macOS using terminal command [Python] - Python
- Blank Operations in Notepad++ - NotepadPlusPlus
- Spring Boot: Transactions Management with JDBCTemplate Example - Java
- How to locate Python Installation on Windows (10/11) - Windows
- Show Notepad++ tabs in multiple lines instead of scroll on tab bar - NotepadPlusPlus