Android Question Adding BILLING suppress Wifi and Phone-State

Alberto Michelis

Well-Known Member
Licensed User
Longtime User
I`ve added the billing to my app and when I upload the apk it says that the ACCESS-WIFI-STATE AND THE READ-PHONE-STATE permissions are suppresed.
See image
Anything I did wrong?
Thanks
 

Attachments

  • wifi.png
    wifi.png
    6.4 KB · Views: 133

Alberto Michelis

Well-Known Member
Licensed User
Longtime User
Weird... Im still testing the internet conn with

B4X:
Sub Test_Internet_Connection
    Dim p As Phone
    Dim overall_data_state As Int
    Dim cellular_data_state As Int
    '0 Disabled - 1 Enabled. May also return a 3 in enabled state but I can find no explanation of the return values
    'Note: Turning on airplane mode is not the same as disabling wifi
    Dim wifi As Int = p.GetSettings ("wifi_on")
    'Msgbox("Wi-Fi value is: " & wifi, "")
    Dim airplane_mode As Int = p.GetSettings ("airplane_mode_on")
    'Msgbox("Airplane mode value is: " & airplane_mode, "")
...
...

Nothing changes between both versions
 
Upvote 0
Top