Hi all
I have this very simple app that will call with webView an external booking system.
This app has been at the store for some time but I had to upgrade to IOS 13 SDK.
So I have recompiled with B4I 6.50, changed the version and uploaded again.
The app was rejected because the link within the webView (a call to privacy policy of the booking system) is not working - nothing happens.
This link works when I click from the Android version, so it is not a problem of the external booking system.
I there anything else I should be doing differently?
I have tried to create a new webview instead of using the existing one but the problem persisted.
Any help is really appreciated. Thanks!
(here's part of my code)
I have this very simple app that will call with webView an external booking system.
This app has been at the store for some time but I had to upgrade to IOS 13 SDK.
So I have recompiled with B4I 6.50, changed the version and uploaded again.
The app was rejected because the link within the webView (a call to privacy policy of the booking system) is not working - nothing happens.
This link works when I click from the Android version, so it is not a problem of the external booking system.
I there anything else I should be doing differently?
I have tried to create a new webview instead of using the existing one but the problem persisted.
Any help is really appreciated. Thanks!
(here's part of my code)
B4X:
'Code module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public App As Application
Public NavControl As NavigationController
Private Page1 As Page
Private btnReturn As Button
Private pnlGoogleMap As Panel
Private pnlMenu As Panel
Private pnlWelcome As Panel
Private WVGoogleMap As WebView
Private WVSite As WebView
Dim timerWelcomeScreen As Timer
Dim counterWelcomeScreen As Int
Dim HomeWebsite As String = "https://book.appointedd.com/app/5b23ccf61490f47e50695383"
Dim WebCall As Application
Private btnEmail As Button
Private btnMap As Button
Private btnPhone As Button
Private imgMenu As ImageView
'Private MapWidth As Int
'Private MapHeight As Int
Private btnWebsite As Button
End Sub
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Page1")
Page1.Title = "Bell Studios"
Page1.RootPanel.Color = Colors.White
Page1.RootPanel.LoadLayout("main")
'Load the microsite
WVSite.LoadUrl(HomeWebsite)
WVGoogleMap.LoadUrl("https://www.google.co.uk/maps/place/Bell+Studios/@51.4988127,-0.2729622,15z/data=!4m5!3m4!1s0x0:0x3ff68778d5559c15!8m2!3d51.4988127!4d-0.2729622")
'Set up the Welcome screen - Make sure the panel is visible, set counter to 0 and initialise timer
timerWelcomeScreen.Initialize("timerWelcomeScreen", 900)
counterWelcomeScreen = 0
pnlWelcome.Visible = True
timerWelcomeScreen.Enabled = True
'Make sure panel is not showing
pnlGoogleMap.Visible = False
'Show screen
NavControl.NavigationBarVisible = False
NavControl.ShowPage(Page1)
End Sub
Private Sub Page1_Resize(Width As Int, Height As Int)
End Sub
Private Sub Application_Background
End Sub