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 2020/10/07 11:56:42 UTC

[GitHub] [cordova-plugin-camera] kryops opened a new issue #673: Can't open camera on Android 11 with targetSdkVersion=30

kryops opened a new issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673


   # Bug Report
   
   ## Problem
   
   ### What is expected to happen?
   
   The camera can be opened normally on Android 11 when building with `targetSdkVersion=30`.
   
   ### What does actually happen?
   
   ```
   Error: You don't have a default camera.  Your device may not be CTS complaint.
   ```
   
   ## Information
   <!-- Include all relevant information that might help understand and reproduce the problem -->
   
   The error comes from here: https://github.com/apache/cordova-plugin-camera/blob/0333d001c7c2df5418c2a344e275d3b43d99f2d8/src/android/CameraLauncher.java#L305
   
   When removing the condition, the camera launches as expected.
   
   Our current workaround is to stay on `targetSdkVersion=29`.
   
   ### Command or Code
   <!-- What command or code is needed to reproduce the problem? -->
   
   ```
   camera.getPicture(onSuccess, onError, {
       quality: 50,
       destinationType: Camera.DestinationType.FILE_URI,
       sourceType: Camera.PictureSourceType.CAMERA,
       encodingType: Camera.EncodingType.JPEG,
       mediaType: Camera.MediaType.PICTURE,
       allowEdit: false,
       correctOrientation: true,
       targetWidth: 1920,
   });
   ```
   
   ### Environment, Platform, Device
   <!-- In what environment, on what platform or on which device are you experiencing the issue? -->
   
   Android 11
   
   ### Version information
   <!-- 
   What are relevant versions you are using?
   For example:
   Cordova: Cordova CLI, Cordova Platforms, Cordova Plugins 
   Other Frameworks: Ionic Framework and CLI version
   Operating System, Android Studio, Xcode etc.
   -->
   
   cordova 10.0.0
   cordova-android 9.0.0
   cordova-plugin-camera 5.0.0
   cordova-plugin-androidx-adapter 1.1.1
   
   ```
   <preference name="android-minSdkVersion" value="22" />
   <preference name="android-targetSdkVersion" value="30" />
   <preference name="AndroidXEnabled" value="true" />
   ```
   
   ## Checklist
   <!-- Please check the boxes by putting an x in the [ ] like so: [x] -->
   
   - [x] I searched for existing GitHub issues
   - [x] I updated all Cordova tooling to most recent version
   - [x] I included all the necessary information above
   


----------------------------------------------------------------
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.

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] Ali54561 edited a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
Ali54561 edited a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-853907988


   I have downgraded my android target to 29 but same issue.  No benefit.


-- 
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.

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] WuglyakBolgoink commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   @Fever905 after switching back to 29, can u install the app on android 11 devices? If I correct remember, the app will be not available in the google store. Or?


-- 
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.

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] NoelDeMartin commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   For anyone getting this issue, this has been solved in https://github.com/apache/cordova-plugin-camera/pull/684 and https://github.com/apache/cordova-plugin-camera/pull/739 but hasn't been merged yet. Until the fix is released, you can fix it by adding the following to the config.xml in your project (under `<platform name="android">`):
   
   ```xml
   <config-file parent="/*" target="AndroidManifest.xml">
       <queries>
           <intent>
               <action android:name="android.media.action.IMAGE_CAPTURE" />
           </intent>
           <intent>
               <action android:name="android.intent.action.GET_CONTENT" />
           </intent>
       </queries>
   </config-file>
   ```
   
   If you're using `allowEdit`, you should also add `android.intent.action.PICK`.


-- 
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] PieterVanPoyer commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   Same issue there: https://github.com/apache/cordova-plugin-camera/issues/734 
   
   The issue according to @Ali54561 was:
   
   >Yes I target Android Sdk 30.
   >I am getting this error only on google pixel devices on which android 11 is installed. All other devices are working fine.
   


-- 
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.

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] Kristoffer93 commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   I have the same problem.


----------------------------------------------------------------
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.

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] AdriVanHoudt commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   I can confirm that #684 fixes this issue for us


-- 
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] Ali54561 removed a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
Ali54561 removed a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-853907988


   I have downgraded my android target to 29 but same issue.  No benefit. have someone solved this issue?


-- 
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.

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] Fever905 commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   Same issue here using a Pixel 4A 5G.  Switching back to 29 solves it for now.  Is this fix here ready?


----------------------------------------------------------------
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.

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] Ali54561 edited a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
Ali54561 edited a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-853907988






-- 
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.

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] Ali54561 commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   I have downgraded my android target to 29 but same issue. 


-- 
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.

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] kevindanielr commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   Thanks for the help, I've been trying this and it hasn't worked for me. In the browser console it does not show me any error message when opening the camera or the gallery.
   
   I would really appreciate your help.


-- 
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] Lampotrias removed a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
Lampotrias removed a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-709890107


   Problem here:
   
   ```PackageManager mPm = activity.getPackageManager();
   if (intent.resolveActivity(mPm) != null)
   {
   	cordova.startActivityForResult(this, intent, (CAMERA + 1) * 16 + returnType + 1);
   }```
   org/apache/cordova/camera/CameraLauncher.java


----------------------------------------------------------------
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.

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] Lampotrias commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   Promlem here:
   
   ```PackageManager mPm = activity.getPackageManager();
   if (intent.resolveActivity(mPm) != null)
   {
   	cordova.startActivityForResult(this, intent, (CAMERA + 1) * 16 + returnType + 1);
   }```
   org/apache/cordova/camera/CameraLauncher.java


----------------------------------------------------------------
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.

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] WuglyakBolgoink edited a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
WuglyakBolgoink edited a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-852379026


   @PieterVanPoyer 
   
   > Google will enforce new uploads to the playstore to be build with version 30 as of august (If I am correct)
   
   yes, this is correct.


-- 
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.

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] Ali54561 commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   Actually my clients are using android 11 and it is showing incompatible to their devices. so I have to publish my app with API level  11. Now it is available on play store with API level 11. 


-- 
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.

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] kevindanielr removed a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
kevindanielr removed a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-992709290


   Thanks for the help, I've been trying this and it hasn't worked for me. In the browser console it does not show me any error message when opening the camera or the gallery.
   
   I would really appreciate your help.


-- 
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] Ali54561 removed a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
Ali54561 removed a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-853907988


   I have downgraded my android target to 29 but same issue.  No benefit. have someone solved this issue?


-- 
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.

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] PieterVanPoyer edited a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
PieterVanPoyer edited a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-854920510


   @Ali54561 can you add the link to the app on the playstore? I've got an Android 11 device and like to see it for myself. Because I've got apps build with target sdk 29 and they just appear to be compatibel with my Android 11 device.


-- 
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.

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] PieterVanPoyer commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   @Ali54561 can you add the link to the app on the playstore? I've got an Android 11 device and like to see it for myself. Because I've got apps build with target sdk 29 and they just appear to be compatibel with my device.


-- 
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.

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] Lampotrias edited a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
Lampotrias edited a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-709890107


   Problem here:
   
   ```PackageManager mPm = activity.getPackageManager();
   if (intent.resolveActivity(mPm) != null)
   {
   	cordova.startActivityForResult(this, intent, (CAMERA + 1) * 16 + returnType + 1);
   }```
   org/apache/cordova/camera/CameraLauncher.java


----------------------------------------------------------------
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.

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] Ali54561 commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   I have downgraded my android target to 29 but same issue. 


-- 
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.

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] erisu closed issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
erisu closed issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673


   


-- 
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] WuglyakBolgoink edited a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
WuglyakBolgoink edited a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-852379026


   @PieterVanPoyer 
   
   > Google will enforce new uploads to the playstore to be build with version 30 as of august (If I am correct)
   
   yes, this is correct.
   
   > normally the app would still be available for Android 11 devices in the playstore.
   
   ok, then I will plan to downgrade the version...


-- 
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.

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] Ali54561 commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   I have downgraded my app from 29 to 30 and published it on playstore. Now It is not visible on android 11 devices.
   
   ![image_2021_06_04T15_53_56_356Z](https://user-images.githubusercontent.com/85111030/120830304-c7df1c80-c577-11eb-8d40-5234f1f0911e.png)
   
   In screenshot, you can see I am trying to install my app on Google Pixel 3a XL(With Android 11) and it is saying this item is not compatible with your device.
   


-- 
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.

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] PieterVanPoyer commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   @WuglyakBolgoink  normally the app would still be available for Android 11 devices in the playstore. It is just build with version 29. Android / Google will enforce new uploads to the playstore to be build with version 30 as of august (If I am correct).


-- 
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.

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] Ali54561 edited a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
Ali54561 edited a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-853907988


   I have downgraded my android target to 29 but same issue.  No benefit. have someone solved this issue?


-- 
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.

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] WuglyakBolgoink commented on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

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


   > @WuglyakBolgoink normally the app would still be available for Android 11 devices in the playstore. It is just build with version 29. Android / Google will enforce new uploads to the playstore to be build with version 30 as of august (If I am correct).
   
   > Google will enforce new uploads to the playstore to be build with version 30 as of august (If I am correct)
   
   yes, this is correct.


-- 
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.

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] WuglyakBolgoink edited a comment on issue #673: Can't open camera on Android 11 with targetSdkVersion=30

Posted by GitBox <gi...@apache.org>.
WuglyakBolgoink edited a comment on issue #673:
URL: https://github.com/apache/cordova-plugin-camera/issues/673#issuecomment-852379026


   @PieterVanPoyer 
   
   > Google will enforce new uploads to the playstore to be build with version 30 as of august (If I am correct)
   
   yes, this is correct.
   
   > normally the app would still be available for Android 11 devices in the playstore.
   


-- 
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.

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