2024 - 10 min. to build a free native iOS/Android app 🔷

Many bubblers would like to have their Bubble site (or app) converted into an application for iPhone ‘iOS’ or ‘Android’ for free. In less than 10 minutes, I had my site on my phone with free Jasonelle :large_blue_diamond: open source. :slight_smile: Become an expert in native app creation!


The main advantage of this tool is that you will never have to compile again or submit your APP to Apple or Google stores. Everything is done on Bubble side forever! If you still don’t want to do it yourself, I recommend the BDK Native in the box.


6 EASY STEPS
This procedure is the same for iOS or Android.

  1. Download the executable files:
    iOS (Xcode) iOS for Bubble or Android (Studio) Android

  2. Install (if not already done) Xcode for Mac: Xcode or Android Studio: Android Studio

  3. Open the ‘master.zip’ , run SETUP
    image

  1. Create with any text editor a text file with the name or create an endpoint inside API Workflows > No need any file! < Read this!

index.json

  • an copy those lines to it (this is your wrapper). Save it. Change the domain with yours! www.your_Bubble_domain.me
{
   "$jason": {
		"body": {
			"background": {
				"type": "html",
				"url": "https://www.your_Bubble_domain.me",
					"action": {
						"type": "$default"
							  }
						  }
				}
			  }
}
  1. Inside the compiler (iOS) you need to specify URL in the section settings.plist

  2. Connect your phone and choose from the simulator menu your phone (which should appear) and press RUN (the triangle button). Your app will open in your phone.

Enjoy!

com-optimize

more notes:
Android installation (July5) : Android debugging

What bubblers says (thanks guys :slight_smile: )

  • " Thanks a lot for your very useful post. The kind we need here! Just to say that. Cheers " N.

  • " It’s been really useful, especially the json you provide, even though it’s super simple, made literally it no brainer for me who wasn’t sure how to write the wrapping" G.

  • " You have saved me time and money through your posts on the forum about wrapping. Your solution is elegant and 100% effective. " S.

184 Likes

Nicely done sir!

7 Likes

Does it interacts well with picture uploader, scrolling within elements etc? Because I tried a few other alternatives and many of them failed some essential basic task.

2 Likes

Hi @vini_brito

At the base (html), the Jasonelle core use the most commun features of both world iOs and Android. Scrolling working good, and any ‘uploader’ (including pdf). At this point, I recommand a try :wink:

The best part is having fun with NATIVE Jasonelle functions.

3 Likes

Thanks! Interesting and I will try it out. Question, if I want to create a Android app can I also use Xcode or do I need Android Studio and should I use Xcode for iOS app?

1 Like

Hi @FJP

Xcode for iOS, Studio for Android. And thanks.

2 Likes

Thank you! It’s possible to lock orientation to prevent horizontal?

1 Like

@danielowega All thoses settings are inside the compilers. :wink:

2 Likes

This is great!

Thanks for sharing.

1 Like

Thank you @privilet.info

Hope you enjoy. This is the faster way I found.

1 Like

Hi, @JohnMark

The iOS works like a charm. And I’d like to share my experience building the Android version. It’s not that easy and straight forward as building in Xcode.

During the installation, you will find an error like this

Unsupported method: AndroidProject.getVariantNames()

I found a solution here in the top answer. It changes only two lines and it will work like magic. Then the android studio will ask to download a newer SDK version and all things will be done.

Follow the documentation in the jasonette.com to customize your app, but it’s quite an old version. Here’s the path in new version

Open strings.xml, change the app_name to yours and change the URL to the same index.json’s URL path as JohnMark’s instruction step 4.

And don’t forget to replace the icons in those mipmaps folders in the res folder. I did this manually by reveal the folder in finder and replace the icons one by one.

Have fun everyone :slight_smile:

23 Likes

Hi @privilet.info

Totally agreed… it took me 100 minutes to patch everything on Android. So let’s start first with the new Android download.

and download the file…

next…

next…
Configure your phone to be in a state of “Development mode” in the settings of your phone. You have to press 7 times this Build number…


next…
If the demo doesn’t work is probably because you don’t have the old things… so installed it.


1>


2 >


3 >

Still enjoy! you just saved hours… :slight_smile:

11 Likes

@lantzgould Thanks

Awosome stuff @JohnMark , thanks for this.

But what is the difference between this and using a webview option? what are the advantages/ disadvantages?

Thanks

2 Likes

Hi @LinuxUser, thanks.

The difference is for your end users, having an app that they can download from Apple and Google Stores. It’s also more personal, your own “icon” but in terms of speed it will be the same, since you don’t use Jasonelle’s native functions to make it faster, at the moment :wink:

1 Like

Using the webview option in Jasonelle will result in the same end experience as using something like Webview Gold or Superview. It does the same thing: load your Bubble website through a web browser. As JohnMark says, your users will download the app from the app store, but if there is no internet connection, there’s no access to your app as it’s still just loading it through a web browser.

4 Likes

To add to what Andrew says, I would tend to believe that it depends on everyone’s need. 95% of the apps I use on my iphone (100+) are apps that need to be online. Also as I mentioned, the advantage over WebView or the others ($) is that Jasonelle uses a batch file external to the main file (in json format), which makes it completely standalone for future changes without compile clutter. Over time, you can add native elements to your app to give it more color and speed. This plugin let you use the swipe and press&hold controls.

Swipe to Workflow Action


3 Likes

Hi John,

This looks very good! ONe of the main reasons why I would want a native version of my app is to be able to send native push messages to the user. Is that possible with your solution?

3 Likes

Hi @SenorPelota, and yes it is very good :slight_smile:

Jasonelle is basically a native application, with a ‘wrapper’ which is simply an htlm window of the same type as we have with Bubble. Notifications are possible, and there are several ways to do so. OneSignal is one of those. I invite you to read the means to achieve this. Jasonelle forum.

8 Likes

Is it enought to use one of bubble onesignal plugins or does it requiremother conficuration aswell?

1 Like