How to Build a Mobile App with Zoho Creator
Why Make Your Zoho Creator App Mobile?
Mobile apps give your users a cleaner, faster, and more intuitive experience. Whether you’re building tools for your internal team or offering services to customers or partners, a native mobile version makes everything more accessible. Plus, Zoho Creator makes the process surprisingly simple.
Step 1: Install Java SDK
To get started, you’ll need to install the Java Development Kit (JDK). We recommend using the Oracle JDK, but other trusted versions will also work.
Once installed, open your command prompt and type:
java -version
If it returns the version number, you’re all set!
Step 2: Generate an Upload Keystore File
You’ll need a keystore file to sign your app. This is a security certificate used when submitting apps to app stores.
Here’s a sample command you can use:
keytool -genkey -v -keystore personalproductivitymanagement.keystore -alias sample-name -keyalg RSA -keysize 2048 -validity 10000
Follow the prompts to enter a keystore password, a key password, and other identifying information.
Once complete, you’ll find the .keystore file typically in your C:\Users[your name] directory.
Step 3: Open Zoho Creator’s Mobile Deployment Section
Log into Zoho Creator.
Open your application.
Go to Deploy > Mobile.
Choose the application you want to package.
Select whether this is for a User or Portal User.
Choose your platform (e.g., Android).
Enter your package name (e.g., com.companyname.appname).
Upload your app icon (optional).
Step 4: Choose Export Format (AAB or APK)
Zoho Creator offers two export formats:
AAB (Android App Bundle) – for publishing on Play Store
APK – for direct installation on Android devices
To generate an APK, you’ll need a signing keystore file (same as before). Upload it, then enter:
Keystore password
Key password
Alias name
Upload the file from your system’s path.
Step 5: Generate and Download Your Mobile App
Click Generate, then Code Sign. Zoho Creator will build and sign your app within about 10 minutes.
After it’s ready, download the file and install it on your device—or upload the AAB to the Google Play Console for publishing.
And That’s It!
In just a few simple steps, you’ve taken your Zoho Creator app and turned it into a native Android mobile application. Whether for internal use or public release, it’s an efficient way to bring your app to users’ fingertips.
Frequently Asked Questions (FAQs)
Nope! Zoho Creator is low-code, and most of the mobile app deployment steps are form-based. However, basic command-line familiarity helps with keystore generation.
A keystore file is a digital certificate used to sign your app. It’s required to validate your app’s identity, especially for APK and AAB files intended for the Play Store.
Yes, but the process is different and requires additional steps such as a Mac machine and an Apple Developer account. This guide focuses on Android.
Typically, it takes about 5 to 10 minutes after you click Generate > Code Sign.
APK is the actual app file for Android devices. AAB (Android App Bundle) is used when submitting to the Play Store—it’s a newer, optimized format that Google recommends.
After generation, Zoho Creator provides a direct download link. Make sure to save it securely for future installations or uploads.
