You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by "Manoj (Created) (JIRA)" <ji...@apache.org> on 2012/04/09 08:21:28 UTC

[jira] [Created] (CB-467) Camera autofocus needs to be disabled at framework level and enabled on a per app basis

Camera autofocus needs to be disabled at framework level and enabled on a per app basis
---------------------------------------------------------------------------------------

                 Key: CB-467
                 URL: https://issues.apache.org/jira/browse/CB-467
             Project: Apache Callback
          Issue Type: Bug
          Components: Android, CordovaJS, iOS
    Affects Versions: 1.5.0, 1.4.0, 1.3.0, 1.2.0, 1.1.0, 1.0.0
            Reporter: Manoj
            Assignee: Joe Bowser
             Fix For: 1.6.0, 1.7.0


If i decide to add a  camera feature in config.xml, with something like
    <feature name="http://api.phonegap.com/1.0/camera"/> and then generate a build through build.phonegap.com,
I have noticed that the generated AndroidManifest.xml of the .apk file lists the following as requirements 
android.hardware.camera 
android.hardware.camera.autofocus 
While the first line is needed, the second is not and acts as a restricting filter in the android market even though camera autofocus in not a requirement.
It would make more sense to have autofocus disabled on the framework level and enabled on a per-app basis only when needed.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (CB-467) Camera autofocus needs to be disabled at framework level and enabled on a per app basis

Posted by "Manoj (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CB-467?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Manoj updated CB-467:
---------------------

    Component/s:     (was: iOS)
    
> Camera autofocus needs to be disabled at framework level and enabled on a per app basis
> ---------------------------------------------------------------------------------------
>
>                 Key: CB-467
>                 URL: https://issues.apache.org/jira/browse/CB-467
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: Android, CordovaJS
>    Affects Versions: 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0
>            Reporter: Manoj
>            Assignee: Joe Bowser
>             Fix For: 1.6.0, 1.7.0
>
>
> If i decide to add a  camera feature in config.xml, with something like
>     <feature name="http://api.phonegap.com/1.0/camera"/> and then generate a build through build.phonegap.com,
> I have noticed that the generated AndroidManifest.xml of the .apk file lists the following as requirements 
> android.hardware.camera 
> android.hardware.camera.autofocus 
> While the first line is needed, the second is not and acts as a restricting filter in the android market even though camera autofocus in not a requirement.
> It would make more sense to have autofocus disabled on the framework level and enabled on a per-app basis only when needed.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (CB-467) Camera autofocus needs to be disabled at framework level and enabled on a per app basis

Posted by "Manoj (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CB-467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13249773#comment-13249773 ] 

Manoj commented on CB-467:
--------------------------

Doesn't need it .. have have removed iOS tag ...
                
> Camera autofocus needs to be disabled at framework level and enabled on a per app basis
> ---------------------------------------------------------------------------------------
>
>                 Key: CB-467
>                 URL: https://issues.apache.org/jira/browse/CB-467
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: Android, CordovaJS
>    Affects Versions: 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0
>            Reporter: Manoj
>            Assignee: Joe Bowser
>             Fix For: 1.6.0, 1.7.0
>
>
> If i decide to add a  camera feature in config.xml, with something like
>     <feature name="http://api.phonegap.com/1.0/camera"/> and then generate a build through build.phonegap.com,
> I have noticed that the generated AndroidManifest.xml of the .apk file lists the following as requirements 
> android.hardware.camera 
> android.hardware.camera.autofocus 
> While the first line is needed, the second is not and acts as a restricting filter in the android market even though camera autofocus in not a requirement.
> It would make more sense to have autofocus disabled on the framework level and enabled on a per-app basis only when needed.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (CB-467) Camera autofocus needs to be disabled at framework level and enabled on a per app basis

Posted by "Joe Bowser (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CB-467?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Joe Bowser resolved CB-467.
---------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 1.7.0)

Removed the constraints from the Template's Android Manifest.  Now, you have to add the Camera Permissions if you are using a Camera plugin. (By default, we use a 3rd party intent, so we don't have to add these extra permissions)
                
> Camera autofocus needs to be disabled at framework level and enabled on a per app basis
> ---------------------------------------------------------------------------------------
>
>                 Key: CB-467
>                 URL: https://issues.apache.org/jira/browse/CB-467
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: Android, CordovaJS
>    Affects Versions: 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0
>            Reporter: Manoj
>            Assignee: Joe Bowser
>             Fix For: 1.6.0
>
>
> If i decide to add a  camera feature in config.xml, with something like
>     <feature name="http://api.phonegap.com/1.0/camera"/> and then generate a build through build.phonegap.com,
> I have noticed that the generated AndroidManifest.xml of the .apk file lists the following as requirements 
> android.hardware.camera 
> android.hardware.camera.autofocus 
> While the first line is needed, the second is not and acts as a restricting filter in the android market even though camera autofocus in not a requirement.
> It would make more sense to have autofocus disabled on the framework level and enabled on a per-app basis only when needed.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (CB-467) Camera autofocus needs to be disabled at framework level and enabled on a per app basis

Posted by "Shazron Abdullah (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CB-467?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13249724#comment-13249724 ] 

Shazron Abdullah commented on CB-467:
-------------------------------------

Why is this tagged iOS?
                
> Camera autofocus needs to be disabled at framework level and enabled on a per app basis
> ---------------------------------------------------------------------------------------
>
>                 Key: CB-467
>                 URL: https://issues.apache.org/jira/browse/CB-467
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: Android, CordovaJS, iOS
>    Affects Versions: 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0
>            Reporter: Manoj
>            Assignee: Joe Bowser
>             Fix For: 1.6.0, 1.7.0
>
>
> If i decide to add a  camera feature in config.xml, with something like
>     <feature name="http://api.phonegap.com/1.0/camera"/> and then generate a build through build.phonegap.com,
> I have noticed that the generated AndroidManifest.xml of the .apk file lists the following as requirements 
> android.hardware.camera 
> android.hardware.camera.autofocus 
> While the first line is needed, the second is not and acts as a restricting filter in the android market even though camera autofocus in not a requirement.
> It would make more sense to have autofocus disabled on the framework level and enabled on a per-app basis only when needed.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira