breautek commented on issue #826:
URL: 
https://github.com/apache/cordova-plugin-camera/issues/826#issuecomment-1764371449

   > git clone https://github.com/apache/cordova-plugin-camera.git
   
   Use current release instead of the tip of master of the development branch 
which will be unstable. At the time of writing, there has been no commits 
between the current release and the master branch outside of chore commits 
(e.g. bumping to `7.0.1-dev` version) so if the master branch works, then so 
should 7.0.0.
   
   > android:largeHeap="true" android:requestLegacyExternalStorage="true" 
android:usesCleartextTraffic="true"
   
   This is overall simply bad advice
   
   > android:largeHeap="true"
   
   This will allow the Java heap to grow much larger than the standard 256mb 
the OS gives you. Garbage collection can be delayed and when GC does occur it 
can take a significantly longer time to accomplish leading to stuttering UI and 
poor app performance.
   
   > android:requestLegacyExternalStorage="true" 
   
   Today this is a no-op, it only applies if you're targeting API 29, and only 
applies if you had the app published before API 29 was released. Today, Google 
Play requires targeting API 33.
   
   > android:usesCleartextTraffic="true"
   
   This should only be used in testing/development environments. Google expects 
you to be using secured traffic whenever possible so that your user data is 
properly secured.
   
   I've locked this thread to respect the OP's inbox, because it seems to be 
going off topic (e.g. we can't provide assistance if you're using a fork of 
this plugin). If there are issues with v7 of this plugin, I'd recommend raising 
a new issue with the details filled out so that it can be tracked and addressed 
accordingly.


-- 
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-unsubscr...@cordova.apache.org

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


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

Reply via email to