Categories

Getting started with WellWebView

Unity Asset Store

You can buy an asset in the Unity Asset Store After purchasing the asset, you need to import it into the project. You can do this via Window->Asset Store or via Window->Package Manager in the My Assets category

Optional steps

To configure the necessary additional permissions that you may need. You need to go to Assets->WellWebView. After that, the settings will be displayed:

Let's look at the parameters in more detail:

Android:

Use clear text traffic - Adds to the Android manifest properties to allow http sites to load. If you are sure that only https sites will be downloaded, we recommend that you do not enable this option.

Read permission - Adds the following permission to the android manifest: <uses-permission android:name= "android. permission. READ_EXTERNAL_STORAGE"/> .It is required if the browser to upload files from the device. Example (upload photo to photo-hosting).

Write permission - Adds the following permission to the android manifest: <uses-permission android:name= "android. permission. WRITE_EXTERNAL_STORAGE"/> .It is required if the browser to download files from the device.

Android && IOS:

Geolocation permission - Adds the following permission to the android manifest: <uses-permission android:name= "android. permission. ACCESS_FINE_LOCATION"/> IOS: Adds the NSLocationWhenInUseUsageDescription key to info. plist.Required if the browser or site uses the geolocation for its work. This permission is considered dangerous, so it is better not to enable it unnecessarily.