You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2022/06/04 14:22:08 UTC

[GitHub] [cordova-plugin-camera] jagatb880 opened a new issue, #794: Camera return 20 , after implementing smallcase plugin

jagatb880 opened a new issue, #794:
URL: https://github.com/apache/cordova-plugin-camera/issues/794

   I am getting error in camera while taking photo. (gallery is working fine). It throws 20 as a error.
    
   
   I am implemented below plugin:
   
   
       "com.scgateway.phonegap": "git+https://github.com/smallcase/gw-mob-sdk-cordova.git",
       
       if I delete this plugin the camera is working fine , but when i add the camera take photo not working .
       
   
   
       I am using below camera plugins:
   
       "@awesome-cordova-plugins/camera": "^5.43.0",
       
       "cordova-plugin-camera": "^6.0.0",
       
       "cordova-plugin-camera": {
           "ANDROIDX_CORE_VERSION": "1.6.+"
         }


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-camera] breautek closed issue #794: Camera return 20 , after implementing smallcase plugin (Ionic 6)

Posted by "breautek (via GitHub)" <gi...@apache.org>.
breautek closed issue #794: Camera return 20 , after implementing smallcase plugin (Ionic 6)
URL: https://github.com/apache/cordova-plugin-camera/issues/794


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-camera] breautek commented on issue #794: Camera return 20 , after implementing smallcase plugin (Ionic 6)

Posted by GitBox <gi...@apache.org>.
breautek commented on issue #794:
URL: https://github.com/apache/cordova-plugin-camera/issues/794#issuecomment-1151415206

   Error code 20 is a permission error.
   
   `gw-mob-sdk-cordova` declares the `CAMERA` permission. The camera permission isn't required for this plugin but does introduce some caveats.
   
   Camera permission is to use the camera APIs programmatically, which this plugin does not do, as this plugin offloads the responsibility to the device's camera app. However, if the application has the `CAMERA` permission declared, then the app must have the `CAMERA` permission granted, even if you're using intents like this plugin does.
   
   This plugin will attempt to request the camera permission if it's declared in the manifest, but if you have previously denied permission, the OS may remember that choice and auto reject the permission grant.
   
   I would advise to double check your permission grants in the app settings.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-camera] hiteshbasware commented on issue #794: Camera return 20 , after implementing smallcase plugin (Ionic 6)

Posted by "hiteshbasware (via GitHub)" <gi...@apache.org>.
hiteshbasware commented on issue #794:
URL: https://github.com/apache/cordova-plugin-camera/issues/794#issuecomment-1647386220

   > still my camera doesnt working only for android 13
   
   Permissions have been updated for Android13 so the names and related checks needs to be updated in cordova plugins java files. This is resolved in #840 
   
   This needs to be merged into master, we are waiting for that till then if you want you can use this using direct git link in package.json


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-camera] SaurabhSalunkeGT commented on issue #794: Camera return 20 , after implementing smallcase plugin (Ionic 6)

Posted by "SaurabhSalunkeGT (via GitHub)" <gi...@apache.org>.
SaurabhSalunkeGT commented on issue #794:
URL: https://github.com/apache/cordova-plugin-camera/issues/794#issuecomment-1463266283

   i have same issue i have given permissions also


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-camera] sagarnkakad commented on issue #794: Camera return 20 , after implementing smallcase plugin (Ionic 6)

Posted by "sagarnkakad (via GitHub)" <gi...@apache.org>.
sagarnkakad commented on issue #794:
URL: https://github.com/apache/cordova-plugin-camera/issues/794#issuecomment-1647345048

   any update? any one found at least work around  
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-camera] SaurabhSalunkeGT commented on issue #794: Camera return 20 , after implementing smallcase plugin (Ionic 6)

Posted by "SaurabhSalunkeGT (via GitHub)" <gi...@apache.org>.
SaurabhSalunkeGT commented on issue #794:
URL: https://github.com/apache/cordova-plugin-camera/issues/794#issuecomment-1463267002

   still my camera doesnt working only for android 13


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-camera] brunoalex commented on issue #794: Camera return 20 , after implementing smallcase plugin (Ionic 6)

Posted by "brunoalex (via GitHub)" <gi...@apache.org>.
brunoalex commented on issue #794:
URL: https://github.com/apache/cordova-plugin-camera/issues/794#issuecomment-1593800613

   any update ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-camera] breautek commented on issue #794: Camera return 20 , after implementing smallcase plugin (Ionic 6)

Posted by "breautek (via GitHub)" <gi...@apache.org>.
breautek commented on issue #794:
URL: https://github.com/apache/cordova-plugin-camera/issues/794#issuecomment-1708187494

   Should be fixed by https://github.com/apache/cordova-plugin-camera/pull/844


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org