Developer Documentation & User Manual
How to Build & Customize Your Native App
Step-by-step documentation on packaging websites, configuring OneSignal push notifications, AdMob ads, biometric security, and using the JavaScript Bridge SDK.
1
Enter Your Website URL
Open the App Builder, provide your website URL, choose an App Name, and select your branding colors.
2
Configure Native Features
Enable Push Notifications, Biometric PIN Lock, Bottom Navigation Tabs, Drawer Menus, and Google AdMob Ads.
3
Download APK & .AAB
Our automated cloud compiler generates your signed APK (for phone testing) and Google Play .AAB bundle in 30 seconds.
JavaScript Bridge SDK Reference
Trigger native phone hardware directly from your web frontend JavaScript
1. Camera QR & Barcode Scanner Bridge
// Check if running inside the native Android App
if (window.AndroidBridge && window.AndroidBridge.openQRScanner) {
window.AndroidBridge.openQRScanner();
}
// Receive scanned result event
window.addEventListener('qrCodeScanned', function(event) {
console.log('Scanned Barcode/QR Code:', event.detail.code);
});2. Google Play In-App Review Prompt
// Prompt user for Play Store 5-star rating without leaving app
if (window.AndroidBridge && window.AndroidBridge.requestReview) {
window.AndroidBridge.requestReview();
}3. Native Android Share Sheet
// Open native Android Share Dialog (WhatsApp, Telegram, etc.)
if (window.AndroidBridge && window.AndroidBridge.shareContent) {
window.AndroidBridge.shareContent("Check this out!", "Special Offer", "https://yoursite.com");
}