You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2020/03/02 04:43:33 UTC

[GitHub] [cordova-ios] anishadh3892 opened a new issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

anishadh3892 opened a new issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804
 
 
   # Bug Report
   We identified one or more issues with a recent delivery for your app,
   "XXXXX" 1.0 (1.0). Your delivery was successful, but you
   may wish to correct the following issues in your next delivery:
   ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions
   of apps that use UIWebView APIs starting from April 2020 . See
   https://developer.apple.com/documentation/uikit/uiwebview for more
   information.
   After you've corrected the issues, you can upload a new binary to App
   Store Connect.
   
   ## Problem
   Even Im not using the InApp Browser in my app I get this message from apple when I try to release my app.
   ### What is expected to happen?
   
   I try to relese my app and the above Error Occured.
   
   ### What does actually happen?
   It wanna be uploaded(relesed without error message)
   
   
   ## Information
   Even I'm not using in app browser why i wanna change UIWebView to WKWebView.
   No need of it. So I need a solution for the people who dont use InApp Browser plugin cordova
   
   
   ### Command or Code
   <!-- What command or code is needed to reproduce the problem? -->
   
   
   
   ### Environment, Platform, Device
   <!-- In what environment, on what platform or on which device are you experiencing the issue? -->
   
   
   
   ### Version information
   Cordova9 in Monaca
   
   ## 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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] anishadh3892 closed issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
anishadh3892 closed issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804
 
 
   

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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] anishadh3892 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
anishadh3892 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804#issuecomment-593713737
 
 
   Thank you So much for your reply. Your Method worked and helped me a lot. 

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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] anishadh3892 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
anishadh3892 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804#issuecomment-593233585
 
 
   Sorry to interrupt you so many times.
   If i do that my login screen disappeared.
   any suggestions?

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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] erisu commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
erisu commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804#issuecomment-593694690
 
 
   I also forgot to mention that you need to add to `config.xml` the WKWebView plugin configurations. Example below shows what is needed in the ios platform element:
   
   ```
   <platform name="ios">
       <feature name="CDVWKWebViewEngine">
           <param name="ios-package" value="CDVWKWebViewEngine" />
       </feature>
   
       <preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine" />
   </platform>
   ```
   
   Also, Monaca just released the ability to set the WKWebView easily within the app setting screen. It would add the plugin and set the configurations for you.
   
   If you still see the white screen even with the WKWebView plugin configurations added, I would also recommend following what @breautek suggested 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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] anishadh3892 removed a comment on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
anishadh3892 removed a comment on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804#issuecomment-593233585
 
 
   Sorry to interrupt you so many times.
   If i do that my login screen disappeared.
   any suggestions?

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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] biswas123 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
biswas123 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804#issuecomment-595637630
 
 
   > > With the versions that are currently released, make sure that you are:
   > > 
   > > * using `cordova-ios@5.1.1`
   > > * add plugin `cordova-plugin-wkwebview-engine`, preferably the latest version `1.2.1`
   > > * add the following `preference` flag `WKWebViewOnly` to the `config.xml` iOS platform element.
   > > 
   > > E.g.
   > > ```
   > > <platform name="ios">
   > >     <preference name="WKWebViewOnly" value="true" />
   > > </platform>
   > > ```
   > > 
   > > 
   > > If you are still getting the warning, most likely one of the plugins you are using still references `UIWebView` which the plugin developers will need to fix.
   > 
   > Sorry to interrupt you so many times.
   > If i do that my login screen disappeared.
   > any suggestions?
   
   Hey there! How did you fix the login screen disappearing issue after installing the plugin..
   I also put the configuration on config.xml file but still get white screen after app startup.. And I cannot find any error logs on xcode or safari logs.

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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] erisu commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
erisu commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804#issuecomment-593221783
 
 
   With the versions that are currently released, make sure that you are:
   * using `cordova-ios@5.1.1`
   * add plugin `cordova-plugin-wkwebview-engine`, preferably the latest version `1.2.1`
   * add the following `preference` flag `WKWebViewOnly` to the `config.xml` iOS platform element.
   
   E.g.
   
   ```
   <platform name="ios">
       <preference name="WKWebViewOnly" value="true" />
   </platform>
   ```
   
   If you are still getting the warning, most likely one of the plugins you are using still references `UIWebView` which the plugin developers will need to fix.

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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] anishadh3892 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
anishadh3892 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804#issuecomment-593265458
 
 
   > With the versions that are currently released, make sure that you are:
   > 
   > * using `cordova-ios@5.1.1`
   > * add plugin `cordova-plugin-wkwebview-engine`, preferably the latest version `1.2.1`
   > * add the following `preference` flag `WKWebViewOnly` to the `config.xml` iOS platform element.
   > 
   > E.g.
   > 
   > ```
   > <platform name="ios">
   >     <preference name="WKWebViewOnly" value="true" />
   > </platform>
   > ```
   > 
   > If you are still getting the warning, most likely one of the plugins you are using still references `UIWebView` which the plugin developers will need to fix.
   
   Sorry to interrupt you so many times.
   If i do that my login screen disappeared.
   any suggestions?

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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] breautek commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
breautek commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804#issuecomment-593530132
 
 
   > If i do that my login screen disappeared.
   
   There is likely an error that is happening. We'll need to see it to provide more insight. First I'd start with the javascript console for javascript errors, which you can find by using the Safari Remote Inspector.
   
   If nothing shows up there, then I'd use xcode to debug your app as the problem might be on the native side.

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


With regards,
Apache Git Services

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


[GitHub] [cordova-ios] anishadh3892 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020.

Posted by GitBox <gi...@apache.org>.
anishadh3892 commented on issue #804: Want to remove UIWebView from my Cordova Project in monaca for the latest issue from the Apple which was it cannot be accepted after April 2020. 
URL: https://github.com/apache/cordova-ios/issues/804#issuecomment-593224838
 
 
   Thank you so much for your reply. It helped me a lot.

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


With regards,
Apache Git Services

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