
Introduction
Managing app versions is one of mobile app development's most underestimated yet critical parts. A poor version update strategy can directly impact ratings, revenue, and user trust.
This guide explains common pitfalls of version management, the challenges businesses face, and a practical step-by-step integration of AppSync by AppsOnAir for React Native.
Why App Version Management Matters?
From real-world data across fintech, e-commerce, and social apps:
- Update adoption: Only 23% of users update within the first week.
- Security patches: On average, 80% adoption takes 34 days.
- Revenue loss: Poor update adoption can reduce potential revenue by 15–25%.
- Support tickets: 67% of tickets come from outdated app versions.
Every day users stay on an old version is a day they’re experiencing a broken or incomplete product.
Common Update & Challenges
1. Security Vulnerabilities
Critical bugs fixed in new versions don’t immediately protect users who stay on older builds. This gap exposes apps to compliance risks, lost trust.
2. Multiple Backend Versions
Supporting several app versions in production increases infrastructure cost, complicates testing, and slows down rel ease cycles.
3. Lost Revenue
New features (like a faster checkout) only benefit users on the latest version. If most users don’t upgrade, the business loses revenue opportunities.
Why do we use AppSync?
After experimenting with manual prompts and custom logic, we adopted AppSync by AppsOnAir because it:
- Allows force updates for critical fixes.
- Supports optional updates for feature releases.
- Provides maintenance mode during downtime.
- Enables gradual rollouts.
- Works across Flutter, Android, iOS, and React Native.
React Native Integration with AppSync
Step 1: Add AppSync Dependency
npm i appsonair-react-native-appsync
Step 2: Basic AppsOnAirAppID Setup
Go to App Settings in the AppsOnAir web portal and copy the AppsOnAirAppId
For iOS, add AppsonairAppId in Info.plist file
<key>AppsonairAppId</key>
<string>XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</string>
For Android, add AppsonairAppId in the AndroidManifest file
<application>
...
<meta-data
android:name="AppsonairAppId"
android:value="********-****-****-****-************" />
</application>
Set up AppsonairAppId for your mobile app. For more details, refer to this documentation.
Step 3: Add meta-data to the app's AndroidManifest.xml
Make sure meta-data name is “com.appsonair.icon”:
<application>
...
<meta-data
android:name="com.appsonair.icon"
android:resource="@mipmap/ic_launcher" />
</application>
Step 4: Basic Setup
Call AppSync during app initialization:
import { sync, type AppSyncResponse } from "appsonair-react-native-appsync";
useEffect(() => {
sync()
}, []);
This will automatically check the app version and trigger the appropriate update/maintenance flow.
Step 5: Custom UI (Optional)
You can replace the default dialog with a custom widget:
import { sync, type AppSyncResponse } from "appsonair-react-native-appsync";
const [data, setData] = useState<AppSyncResponse | null>(null);
useEffect(() => {
sync({ showNativeUI: false }).then((res) => {
setData(res);
// Custom alert for android app update
if (res.updateAvailable) {
Alert.alert(
"Update Available",
"A new version of the app is available. Please update to the latest version.",
[
{
text: "OK",
onPress: () => Linking.openURL(res.updateData.updateLink!),
},
]
);
}
});
}, []);
You can manage App Update & Maintenance Mode configuration from the AppsOnAir web portal.
App Update

Maintenance Mode

Best Practices for Update Adoption
- Force updates only for critical patches.
- Choose the right timing. Show prompts at app launch or natural transitions, not during active tasks.
- Provide optional updates for features. Encourage with benefits: “Checkout is now 40% faster.”
Results After Implementation
With AppSync integrated, we saw:
Cross-Platform Support
Although this guide focuses on React Native, the same concepts apply to:
- Native Android (Java/Kotlin)
- Native iOS (Swift/Objective-C/SwiftUI)
- Flutter
AppSync maintains consistent update flows across all platforms
Final Notes
App version management should not be an afterthought. With the right tools and policies in place, updates can be smooth, user-friendly, and directly beneficial to both users and the business.
References
- AppsOnAir Onboarding - Official Documentation
- AppsOnAir AppSync - Official Documentation.
- AppSync SDK Setup - AppSync React Native SDK Setup