B4A Question Install Failed - Package signatures do not match with b4a version 11 - doncx (first post)    Nov 16, 2021   (1 reaction) Erel - you are right. My error. The v11 install inadvertently went into a subdirectory (Program Files (x86)\Anywhere Software\Basic4Android\Basic4Android). I was comparing/replacing keystores in... B4A Question [SOLVED] Alternative to check if WhatsApp is installed without using PackageManager - QUERY_ALL_PACKAGES on + SDK30 - scsjc    Nov 8, 2021 Until now I used PackageManager to check which applications were installed (for example WhatsApp) Currently google requires QUERY_ALL_PACKAGES in Manifest in order to have a list of Installed Packages. Is it possible to know if WhatsApp is installed, via tried through some kind of Try-Catch error? Sub APKinstalada(packagename As String) As Boolean Try Dim PM As PackageManager...: " & packagename) Return False End Try End Sub Dim pm As PackageManager... Other B4A v11.50 has been released! - Erel    Mar 21, 2022   (51 reactions) I'm happy to release v11.50. This is an important update. Download link: https://www.b4x.com/b4a.html One of the major steps during compilation is the conversion of the Java bytecode into Android (Dalvik) runtime bytecode. It is called "dexing". This was done by the optimized dexer which was implemented before B4A v1.00 was released. The main problem with the previous tool...'t always work. Starting from v11.50 the optimized dexer was removed and B4A uses Google's D8... B4A Question [SOLVED] How to determine default browser on device - WITHOUT using android.permission.QUERY_ALL_PACKAGES - JackKirk    Aug 14, 2024   (3 reactions) .QUERY_ALL_PACKAGES in the B4A project manifest. This is now heavily frowned upon by Google: https... your app to specify the set of other apps it intends to interact with, which is necessary for package visibility starting from Android 11 (API level 30). Here’s an example of how you can configure....android.com/apk/res/android" package="com.example.myapp"> <queries> <!... and removed the android.permission.QUERY_ALL_PACKAGES - and it all works!!!!!... Other B4A v11.80 is available for download - Erel    Jul 5, 2022   (59 reactions) to exclude code from the IDE case-corrector. Updated libraries: B4XPages v1.11, XUI Views v2.55... Wish Please post previous SDK tool packages - JohnC    Sep 11, 2024 Resources package for B4A 13 caused my app to break, when it worked with B4A 11.5 and it's version of the tools package.
Luckily, when I replaced the tools with the ones from v11, the app worked..., it looks like the IDE will use the SDK/tool package that is pointed to by the "android.jar... I can install and use the latest tool package for most of my apps (as you recommend), but can use an older... B4A Tutorial Now you can debug android app directly under Windows11 - laomms    Oct 21, 2021   (31 reactions) Intel's Bridge technology will allow Android apps to run natively on Windows 11, now Microsoft released the beta version。 1. download windows11 from https://www.microsoft.com/en-us/software-download/windows11 and installed. 120587 2. open https://store.rg-adguard.net, and input:https://www... 120586 3. Administrator runs the Powershell and install the pakage: Add-AppxPackage -Path D... install %1 pause that's all, now you can debug your app directly under Windows11. 120583... Other B4A v11.5 BETA is available for download - Erel    Mar 17, 2022   (43 reactions) I'm happy to release v11.50 BETA #1. This is an important update. One of the major steps during compilation is the conversion of the Java bytecode into Android (Dalvik) runtime bytecode. It is called "dexing". This was done by the optimized dexer which was implemented before B4A v1.00..., which are now used by many newer SDKs. The workarounds didn't always work. Starting from v11.50...://www.b4x.com/android/forum/threads/b4a-v11-5-beta-is-available-for-download.139120/post-880849... B4A Question Programmatically uninstall app on Android 11 - biometrics (first post)    Mar 5, 2024 Only had a chance to try it now, can confirm this works when added to the manifest for Android 11:
AddPermission(android.permission.REQUEST_DELETE_PACKAGES)
... B4A Class [class][B4X] Google OAuth2 - Erel    Mar 19, 2024   (43 reactions)   tags: wait, Google /images/SS-2017-05-11_15.14.36.png For the Android client you need to get the SHA-1 signature. It is available under Tools - Private Sign Key. Set the package name or bundle identifier fields to your app's package name. 2. B4A: Add to the manifest editor: AddActivityText(Main, <intent-filter....intent.category.BROWSABLE" /> <data android:scheme="$PACKAGE$" /> </intent-filter> ) B4i: Change b4i.example2 with your package name. #UrlScheme: b4i.example2 3... Page: 1   2   3   4   5   6   7   |