Code

Discussion on Web2App - Quickest Feature-Rich Android Webview

Discussion on Web2App - Quickest Feature-Rich Android Webview

Cart 3,259 sales

2102 comments found.

Hi sir. PLease, How to solve this in the app ?

“Don’t forget to implement account blocking and restore in your app by November 1, 2020”

Thanks

Ok. what is your email ?

What is your email ?

Hi! Please submit a ticket at sherdle.com/help/ticket/

Hi mate I made a mistake and paid £5 for builder service. But realises it comes with a new license. Is there anyway to get a refund or extend it for 60 days…thanks

Hi! Paying for the build service, as well as buying a new license, works cumulative and can be combined to extend service duration.

So for instance, if you enter your new license, and make a purchase, you’ll get 60 days of access (30 days from both)

Hi, help me connect analytics for this application, I can’t figure it out

Hi! I can’t verify your purchase code. Could you please submit a ticket with me at sherdle.com/help/ticket?

Support twilio programmable video call or not….?

Hi! Microphone and camera access is supported, and protocols like WebRTC for web video calling are supported as well.

Where is it: At the bottom of the onCreate () method of SettingsFragment.java (i.e. below other.removePreference (preference);)

I can’t find it, thanks

Make sure to do what you did, but then, in SettingsFragment.java

SettingsFragment.java is not there, I searched all folders, please tell me where it is or send screen

I see, you are consulting the Universal for Android documentation while you are using Web2App. For Web2App, this article does not apply since there are no settings

can you please tell me what where exactly i can get “ANALYTICS_ID”. Please send URL LINK to get “ANALYTICS_ID”. Or Snapshot. Please.

Hi! In our latest versions we no longer offer this functionality. I would recommend to migrate to Firebase in our new version. The builder will help you to setup this functionality.

Let me know if I can answer any other questions.

Also, trying to build the app online but it keep saying fail.

“Cloud Builder for ‘Hype Life Magazine’

Your build (#4139) failed with the status FAILURE

Usually this indicates that you have provided some invalid information (i.e. wrong API keys or bad images) that is only detected at build time. You can download a copy of the source code, and manually try to build the project as per our documentation, to find out why your build is failing.”

Hi! I checked for you, your splash screen image is not a valid PNG image. This cause the build to fail, please ensure that you provide a valid PNG image for your splash screen (i.e. save it as PNG using photoshop).

Hi, I purchased this app for years and is considering to implement it now.

1. Any chance of adding Push Notifications functionality using Firebase?

2. Does it use Chrome Custom Tab and SFSafariViewController (for the iOS version)? I require this to use Google Adsense for content. See: https://support.google.com/admob/answer/48182/#trs

Thanks

Hi! 1) Yes push notifications using firebase are built-in.

2) For our IOS version, we use WKWebView for the WebView. Note that we do support SFSafariViewController in our Universal for IOS product but only for external links (since you can’t use this as a webview, but only as an in-app browser).

Admob is supported for showing ads in both templates.

Thank you for your reply.

What about for Android (Chrome Custom Tab)?

Hi! Chrome Custom Tabs are not supported on Android.

Hi Admin,

I just bought your script and its great and working well. But, I am getting an issue.

When I opened my membership website on your demo app (via url), after closing and re-opening your demo app, the login user was still staying logged in.

But in my app, it not happening like that, User have to login everytime when they close and open the app. Please suggest me what to do at this point?

Hi! The source code of your app is identical to the source code of our demo. If the site is working differently in the demo, it’s most likely because you’ve setup your site differently then in our demo. For instance, if you use multiple tabs, there can be different sessions happening at the same time. Avoid using tabs, and ensure to load the exact same url.

Hello. Before buying, I would like to know more about what your app offers:

01 Do you provide the apk? and should i publish it on google play?

02 What about updates?

03 How do I define which website will be displayed in the app?

04 Is there a wordpress plugin to manage the website?

There is no need for the user to accept anything, since the default caching of the WebView is used (just like in the browser, where the user also does not need to accept anything).

Notifications wil arrive without the need for the user to accept this.

Sorry, in my last question I wanted to say about the “push notification”

Yes, pish notifications are possible :)

Hi, I want to know how to configure what should open outside of the WebView. For example on my website I have amazon links, I would like that once clicked they open the native amazon app and not a browser, how do you do it? Thanks.

It doesn’t work with url www, why? to open in the native amazon app the url must be https://www.amazon.it/

Hi! Make sure the url is an exact match, i.e. try amazon.it, rather than the full url.

It works, this is the best software, hope you keep it updated, thank you very much

Hello, when I get to the screen where it makes me choose whether to download the source code or compile the code with your server I tried to download the source code but not all the files are complete, I would like to have the final source code from my apk app

Hi! If you download the source code from the builder, you’ll get all the source code that’s available. It’s that identical source code that the online builder uses to generate your apk.

thanks sir!!

Hello. My web is online and google oauth works fine. But mako g a webview app with app inventor sends me an error when trying to connect via google oauth. Would doing the webview app of the (laravel) webapp solve this problem? I am getting Google Auth Error:disallowed_useragent

Hi! Yes, you can use Google Auth in WebView and avoid the error you’re getting. Please see: https://sherdle.com/help/set-the-webview-user-agent/

I have website can i convert that one into mobile app and in coding how can I change it in android studio

Hi! You can definitely use Web2App to create a mobile app for your site. You can use Android Studio for this (we offer documentation for that) of your can use our online app builder to generate (and build) your template.

Hi,

I have few questions before buying it .

1) I have WordPress website can i convert that one into mobile app

2) Will it convert mobile site into app or it has its own template design

3) Can i convert sub URL’s also into mobile app like www.abc.com/dashboard

Thanks

Hi! I’m happy to answer your questions: 1) Yes, that’s what Web2App is designed for :) 2) It’s a WebView, so your app will look just like your site. If you want a native, different, design, checkout our other templates. 3) Yes, that’s possible.

So in the app, clicking on phone numbers result in “An error Occurred” page. same is the case when email is clicked. how can the app rather dial the number in the call app and emails when clicked call the Gmail app or other email app??.

Hi! Could you let me know what solution you found and what the problem was? This way, I can check whether others are experiencing this as well, and apply the fix to future updates if needed :)

PROBLEM: Clicking on a phone number in the webview app results in an “ERROR OCCURRED” Page instead of dialing the number to the call app or bringing up all call apps for user to choose which one to dial to…Same happens when an email is clicked.

SOLUTION:

1. Add this code to MainActivity.java

public boolean shouldOverrideUrlLoading(WebView view, String url) { if (url.startsWith(“mailto:”)) { //Handle mail Urls startActivity(new Intent(Intent.ACTION_SENDTO, Uri.parse(url))); } else if (url.startsWith(“tel:”)) { //Handle telephony Urls startActivity(new Intent(Intent.ACTION_DIAL, Uri.parse(url))); } else { view.loadUrl(url); } return true; }

2. Add “mailto:”,”tel” to Config.java in the OPEN OUTSIDE string

I hope it’s clear now and that other buyers find this useful.

Hello I love Web2App is perfect for my project

I have a question You can remove the top menu and leave only the notification bar My website has a menu https://www.clubdecuca.es/campaign/cucopuntos-9N

Greetings

Hello thank you for the answer in which language is written java or kotlin

Greetings

Hi! It’s written in Java

I’m trying to create a persistent cookie, its working fine on computer browsers, even if I restart my computer. but when I close the webview app and reopen it, its asking for login again. Does the browser in the app configured to delete cookies on close ?

With our templates we don’t offer any additional methods to remember login credentials or force-persists sessions. However, we do support persistent cookies. Simply, place a long-lived cookie to remember the user session (similar as to how Facebook remembers your login in the browser with a ‘stay logged in’ option that sets a cookie).

By default, if you don’t set the cookie lifetime. cookies will only last as long as browser sessions. If sessions aren’t maintained (i.e. a user is logged out every time he opens your app), double check that you properly set long lived cookies the right way, such that it is supported by webview.

Can you please, Let me know How can I add, the exit confirmation in app.

Example : are you really want to exit?

Yes & No Button

Hi! At this time we don’t offer an option to show an exit confirmation in the app.

Failed to load PDF document. Please, Help Me with this Issue

Hi! The WebView is not a PDF viewer. Instead you can download PDF files, or view them in external apps, by using the open outside function of Web2App :)

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey