I just updated my Pixel 6 Pro to Android 14, and now B4A-Bridge won't install the APK. The blue install bar on B4A-Bridge goes about a quarter of the way, and then the message box asking if I want to install pops up. But then the B4A-Bridge screen remains and nothing happens. The app isn't installed. I tried the obvious things like restarting the phone, reinstalling B4A-Bridge, and restarting B4A. No luck. Any ideas?
Personally every works on my test P6P and has done since the betas of 14 was released. The bridge works perfectly fine on the full version too. Do you only have 1 WiFi in your location?
try to copile the source code using the latest version of B4X and install it via USB. maybe, it's possible that there may be a permission issue with Android 14?
B4A-Bridge is made of two components. One component is running on the device and the other is embedded in the IDE. The device side is the server side. It waits for connections and when a connection is established it handles the "action" messages. The code itself is made of a simple activity...
At this point I'm successflly installing/testing my app with USB. I also ended up installing Designer9.apk in place of B4A-Designer. However, B4A-Bridge STILL does not install via wifi, which is too bad because it's so much quicker and more convenient. Could there indeed be some kind of permission issue with B4-Bridge on Android 14?
Are you on Android 14? Was it OK on 13? In any case, until this problem is (hopefully) solved, you can make a USB connection to the Pixel 6a and then copy the .apk from your project Objects folder to the Pixel 6a and install it from there (Files app). Make sure you enable Developer mode on the 6a, and also configure USB connections for data (default is no data).
Is the problem that a new install of B4ABridge does not work on Android 14? Perhaps an already existing installation before the upgrade to 14 works because it inherits some permission or other attribute.
new issue found with android version 14 while using b4abridge existing app is not updating its stuck while updating but when i copied whole project to a new project saved with another name its working cant figure out why this is happening , dear admin please help us to resolve this issue.
new issue found with android version 14 while using b4abridge existing app is not updating its stuck while updating but when i copied whole project to a new project saved with another name its working cant figure out why this is happening , dear admin please help us to resolve this issue.
I freshly installed B4A-Bridge from Play Store on a Google Pixel 5, after the upgrade to Android 14. No issue at all to install my apps over the bridge. Same on a Galaxy A54, with Android 14,
I have noticed the following since the December Android 14 update:
Apps with no adaptive icon, no install/no update
Apps with adaptive icon, no problems
Curiously, the apps with no adaptive icon can be installed with the Files-app.
I have noticed the following since the December Android 14 update:
Apps with no adaptive icon, no install/no update
Apps with adaptive icon, no problems
Curiously, the apps with no adaptive icon can be installed with the Files-app.
I tried a simple example shown here. It initially did not have an adaptive icon and it failed to load as did yours. I then just followed Erel's advice on adding and adaptive icon and it then loaded normally,
For reference here is the complete code of the initial example:
#Region Project Attributes
#ApplicationLabel: Test1
#VersionCode: 1
#VersionName:
'SupportedOrientations possible values: unspecified, landscape or portrait.
#SupportedOrientations: unspecified
#CanInstallToExternalStorage: False
#AdditionalRes: ../icon
#End Region
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Private xui As XUI
Dim ToastTimer As Timer
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
Private Button1 As B4XView
Private b_Toast As B4XView
Private ToastMsg As B4XView
Private TPanel As B4XView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Layout")
ToastTimer.Initialize("ToastTimer", 1500)
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub Button1_Click
'xui.MsgboxAsync("Hide Panel", "B4X")
TPanel.Visible = False
End Sub
Private Sub Button3_Click
ToastTimer.Enabled=True
TPanel.Visible = True
End Sub
Sub ToastTimer_tick
TPanel.Visible = False
ToastTimer.Enabled=False
End Sub
Sub Toast(Msg As String)
ToastTimer.Enabled=True
TPanel.Visible = True
ToastMsg.Text = Msg
End Sub
Private Sub b_Toast_Click
Toast("Headings Shown")
End Sub
Without the icon folder and the other changes it fails to load through the B4A Bridge. It starts to load but then shows a flashing WiFi icon on the bridge screen.