b4i

  1. D

    iOS Question How to get ApplicationLabel and Version at runtime?

    Hi all, Maybe I'm being slow, but I can't seem to find any way to get the app's name and version at runtime? I.e. the values of the Project Attributes #ApplicationLabel and #Version that are set in the Main module. In B4A I would do it by calling Application.LabelName and...
  2. mcqueccu

    iOS Question Ready to Publish..But needs clarification

    Am excited to publish my first application. However, I want to be clear about the steps in the publishing tutorial here 1. I have done the step 1, tested the app in airplane mode and it was ok. 2. Create a distribution certificate and provision file...using the the existing certsigningrequest...
  3. S

    iOS Question First compilation trial on Local Mac

    Hi, I use B4A for a while on my projects, thanks for the nice IDE product family again. I had bought a bundle and don't want to buy a developer ID yet, so i bought a second hand Mac Computer for build processes, which i could use later on, after getting a developer account. I just try to...
  4. didimo73

    Android Question Converting B4A project to B4i

    Hi, I bought both B4A Enterprise and B4i Enterprise + Hosted Builder. I would like to publish the same app on both the Google Play Store and the Apple Store. So I need to have two versions of the same app: one for Android and one for iOS. I have already developed the Androind version using...
  5. Sganga61

    iOS Question Uploading to Apple store problem

    Hi Everybody can anyone help me to understand this kind of problem? After I create a app release, (tested before on local device also in airplane mode), download the last version, get the app specific id from Apple....I try to upload the .ipa file with iTunes connect... I have always this...
  6. LWGShane

    Wish JDK and B4A/B4i

    Since the latest B4J is compatible with OpenJDK 11 and OpenJFX and that B4A/B4i will follow with adding support for OpenJDK 11, I want to suggest creating a "minimized-mobile only" OpenJDK and bundling it with future B4A and B4i installations, like how Microsoft does with Visual Studio and Xamarin.
  7. T

    iOS Question How do I download a PDF file from Webview?

    I followed this thread https://www.b4x.com/android/forum/threads/how-to-go-back-in-webview-and-how-to-download-pdf-file.66546/ And my code is: Sub WebView1_OverrideUrl (Url As String) As Boolean If Url.EndsWith(".pdf") Then Dim j As HttpJob j.Initialize("pdf", Me)...
  8. miguelconde

    iOS Question Where is the objective c code that represents my developement?

    Hello, im not an ios developer and i have some troubles trying to export my b4i proyect to xcode. When i try to open the objective c code that is hosted in Object/src/B4iProyect in Xcode (i need to do this in order to respond to a request of the client) i got a message that says that there are...
  9. Peter Simpson

    Tool B4X Template Manager (New B4J version). Create and share your layouts with others

    First of all, cheers to Filippo who created a template manager last week. I was going to offer Filippo a few suggestions in his thread about his program, but then I decided to create my own on Sunday. B4X Template Manage (B4X TM) is no better or worse than Filippo's, it's just a different take...
  10. QtechLab

    iOS Question Local builder error

    Hi Everyone, I'm trying to compile my App with the local mac compiler, using OSX (lastest version) and XCode (9.4.1). Normally i use the hosted builder to compile the App but now i have to test it with different devices. Xcode provides nice simulators. Compiling with local builder gives me...
  11. N

    Wish Spatialite library for B4i

    Please any equivalent Spatialite libray for B4i. https://www.b4x.com/android/forum/threads/spatialite.36296/ Thanks
  12. R

    iOS Question Google maps marker modification

    In B4A i was able to change a bitmap and add a number, before i used this bitmap for a marker. In B4I i tried this code: Dim Bitm As B4XBitmap = LoadBitmap(File.DirAssets,"Markerg.png") Cv.Initialize(Bitm) Cv.DrawCircle(25dip,39dip,14dip,Colors.DarkGray,True,0) Dim f As...
  13. M

    Wish RESideMenu lib

    HI Everyone im glad to join your big community its very nice to be here with the best developers im not sure i post in a right place so anyway I wish anyone help me with wrapping a lib from a github its a very nice lib and its good to be wrap in b4i link of GitHub project...
  14. MarkusR

    iOS Question B4i IDE environment

    i not have this product, can i use the ide at windows pc and mac? as i understand: at windows pc the ide use a mac (i have a mac mini) for compile and then it copy via B4I-Bridge app to phone. at mac it will compile direct and show the app in xcode phone emulator or push it to the phone via...
  15. omarruben

    Bug? LoadVideoUrl does not load from a string variable holding the address[solved]

    Hello, looks like it is a bug *** does not work **** Private vv As VideoView url = "http://mi.radiocast.us:8000" vv.Initialize("vv") vv.LoadVideoUrl(url) *** WORKS **** Private vv As VideoView vv.Initialize("vv") vv.LoadVideoUrl("http://mi.radiocast.us:8000") using the...
  16. O

    iOS Question How to connect to a mysql Database

    I want to connect to a Mysql Database over the Internet. In B4a it is no problem with the mysql library. But how it works in b4i?
  17. D

    iOS Question Profile Error

    Hi All. Check dependencies Code Signing Error: No certificate matching 'iPhone' found: Select a different signing certificate for CODE_SIGN_IDENTITY, a team that matches your selected certificate, or switch to automatic provisioning. Code Signing Error: Code signing is required for product...
  18. Pooya1

    B4i Library Gallery Grid

    Hello I make library that you can show pictures in grid I use tableview for this library Event for this library: #Event: ItemClick(Index As Int) #Event: ItemLongClick(Index As Int) #Event: GetImageView(ImageView1 As ImageView,Index As Int) #Event: OverScrolled #Event: BottomScroll You can add...
  19. C

    iOS Question Posting a login request to ASP.Net Web API

    I am stuck on a login request to web API. So the process is simple I have to send “username”, “password” and “grant_type” to the server along with the two headers “Accept” and “Content-Type”. If the user is valid my app will receive the following response from the server: { "access_token"...
  20. J

    Android Question Real time messaging question

    I have an App that in its simplistic mode is a Tally system for knowing which competitors have gone afloat and who are ashore. The Competitors have RFID tags. There can be multiple stations where the competitors tally out and in. Version 1 of the App Written in B4A can use Android mobile...
Top