In my Titanium application I need to take pictures from camera, while invoking the camera action I am getting following error

Permission failure: android.permission.CAMERA from uid=10037 pid=407
E/CameraService(   34): Permission Denial: can't use the camera pid=407, uid=10037

I am invoking the camera by following code

Titanium.Media.showCamera({
 .....
 .....
});

Where I have to add permission to use Camera? Anyone help me to solve this issue.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 3 down vote accepted

For Android applications, you need to add the following line to manifest.xml (outside of the <application> tag):

<uses-permission android:name="android.permission.CAMERA" />

In in which you're using Titanium, you can achieve the same effect by adding the line to tiapp.xml under the <manifest> tag, like this:

<android xmlns:android="http://schemas.android.com/apk/res/android">
    <manifest>
        <uses-permission android:name="android.permission.CAMERA" />
    </manifest>
</android>
link|improve this answer
Did you mean tiapp.xml, where I can find the manifest.xml file.....I am a newbie to Titanium also Android – joe Nov 24 '11 at 17:52
@joe: Updated my answer to give details more specific to Titanium. – EdoDodo Nov 24 '11 at 20:40
way the @EdoDodo has shown is fine. Mostly titanium take care of all the permissions. If it don't than you just have to clean and build your project. Titanium will add all required permission automatically. – The Zero Nov 26 '11 at 1:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.