B4A Tutorial [B4X] OkHttpUtils2 / iHttpUtils2 and accept all option - Erel    Jul 27, 2025   (17 reactions) Note that OkHttpUtils2, jOkHttpUtils2 and iHttpUtils2 are actually the exact same b4x library. Starting from v2.90 it is very simple to initialize the internal http client with the 'accept all' option. The accept all option means that certificates will not be validated. It is done by adding the following conditional symbol (Ctrl + B): HU2_ACCEPTALL There is another configurable conditional symbol: HU2_PUBLIC - makes the http client variable (hc) a public variable. This can be used in... B4A Example Getting file info using uri from content chooser or from received shared file - example - Nokia    May 4, 2020   (23 reactions) example of getting file property information from uri provided by content chooser or received file shared to the app. Curtesy of Erel’s example: Received Share. Shows File name, Mime Type, date modified, file size and a list of all columns from that particular content provider. updated code to show information from Gallery content.... 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 Dim ApplicationLabel As String = PM.GetApplicationLabel(packagename) log... B4A Library [class] ContactsUtils - Provides read / write access to the stored contacts - Erel    Aug 26, 2016   (13 reactions) ContactsUtils is a class based on ContentResolver library. ContactsUtils allows you to read all kinds of information from the device stored contacts and also to modify the information, add new... by calling one of the Find methods. All the Find methods return a List that holds cuContact items... modify existing fields and delete the contact. Types: Type cuContact (Id As Long, DisplayName... As Boolean) As List 'Returns all contacts. Public Sub FindAllContacts(VisibleOnly As Boolean... B4A Library ZXingLib by icefairy333 - modified by Johan Schoeman (Scan QR Codes and other 1D/2D Barcodes) - Johan Schoeman    Nov 24, 2021   (36 reactions)   tags: Buildin, ZXingLib, Erel, Barcode 31000 See the attached project (with library files in the /files folder of the project). This is based on the original work of @icefairy333. I have modified @icefairy333's library so... original post. b. It retains use of the front / back camera (not sure if it supports all types of devices...: Posting JohanIcefairyZxingWidthTextBitmapTouchTorch.zip that retains all previously added... elsewhere in this thread how to do it. Edit: Attached JohanIcefairyZxingTimeout.zip with all... B4A Tutorial [B4A] [Class] [Contacts] wmContactsUtils - enhanced ContactsUtils - walt61    Oct 12, 2021   (14 reactions) . Changes to ContactsUtils v1.20 code (all changes are marked with a 'WM' comment in the code... website - FindContactsByGroupName: Returns all contacts that are member of the specified group name - FindContactsByGroupRowId: Returns all contacts that are member of the specified group Row ID..., but use GetAllGroupsByRowName instead) - GetAllContactsThunderbird: Returns all contacts as a list... FindContactsByGroupRowId, FindContactsByGroupName, GetAllGroupsByRowId, GetAllGroupsByRowName... B4A Question [Solved What do I need to modify on the client side for jRDC2 Multi to work? - Sergio Castellari    Sep 4, 2021 . My ignorance does not allow me to realize what I must modify in jRDC2.bas / DBRequestManager.bas... B4A Question Sharing Info between 3 apps - Setlodi    May 30, 2024 Hi there I hope you experts can help. I have 3 applications, App A, App B and App C. The main function of App A is collect user information, e.g. Name, Surname, Telephone. Now I want App B and App C to access this information. I cannot have 1 app doing all that as both 3 app are very big and complex. I want when the user opens App B or App C to already see Name, Surname, Telephone collected.... All I want is to be able to access this file from App B and App C. I'm stuck here...... B4i Question Get UIKeyboardAnimationDurationUserInfoKey and get UIKeyboardAnimationCurveUserInfoKey - Alexander Stolte    Apr 9, 2025 I would like to synchronize the opening of my bottom sheet with a textfield on it, with the opening ... B4A Code Snippet [B4X] Find all reachable ips in the local network - Erel    Mar 12, 2025   (18 reactions) Slightly based on: https://stackoverflow.com/questions/16035636/how-to-get-all-ip-address-of-systems-connected-to-same-wi-fi-network-in-android/21091575#21091575 Compatible with B4A and B4J. Manifest editor (B4A only): AddPermission(android.permission.ACCESS_WIFI_STATE) AddPermission(android.permission.INTERNET) Depends on (j)Network library. Code: Private Sub ScanNetwork Dim server As ServerSocket 'ignore Dim MyIp As String = server.GetMyIP If MyIp = "127.0.0.1"... Page: 1   2   3   4   5   6   7   |