Bug? designer is started all the time in B4A bridge but can not be installed

Amateurtje

Member
Licensed User
Longtime User
On my new phone, samsung a36 i have (re) installed the B4A bridge. when using it, it starts to try to install the designer app. but it gives a message that the phone can not install this app or something. after that, it keeps on doing this after a couple of seconds untill i deinstall the b4a app. because it comes back all the time, it is even a challenge to de-install the b4a bridge....

anybody a solution?

can it have something to do with the fact that i have no code protecting my phone?? maybe stupid relation but i got it before with an app from my energy provider....
 

Juzer Hussain

Active Member
Licensed User
Longtime User
Hi Erel,

I am facing same issue in android 15. Is there any solution to this. "B4A Designer, Do you want to install this app, Cancel, Install". it just keeps popping up every 4-5 seconds. We cant do anything once it has started. I tried to run this code you gave some where - it doesn' help.
B4A Bridge Removal:
Dim pm As PackageManager 'Phone librayr
    Dim packages As List
    packages = pm.GetInstalledPackages
    If packages.IndexOf("anywheresoftware.b4a.designer") = -1 Then
        Log("Not found!")
    Else
        Dim s As String = pm.GetVersionCode("anywheresoftware.b4a.designer")
        Log("version: " & s)
    End If

Juzer
 
Top