Framework Choice for Different Apps in Android
In this article , I am focusing on some factors how we can choose the tech framework for Android apps which is always a great confusion between teams to minimise the development cost.
Here’s a table listing factors to consider when choosing a Mobile Tech Stack for mobile development:
Here’s a table comparing some of the popular cross-platform technologies for mobile development:
Here’s a table comparing web view-based development and native mobile development:
Performance Bottleneck for WebView:
Here’s a table comparing React Native and Native mobile development:
RN has major bottleneck in terms of performance:
- Size of app will be increased too much because of RN framework and Bundle size.
- We have to initialise the RN Engine which costs the app launch performance.
- Maintenance cost is high for React Native while Android and IOS OS upgrade released.
- RN libs gets obsolete due to restriction imposed in latest native OS upgrade because of which we need to use native bridges in RN code, otherwise writing code for all supporting OS for Android and IOS will become lot of overhead for RN libs.(e.g fetching metadata for Location while accessing photo media file require extra permission after Android 12 version)
KMM — Kotlin Multi Platform Mobile (Shared Code Logic between Android and IOS)
So based on above factors and comparison , we can choose how much performance and how much resources we need to invest on our project , for some products performance is main concern , they can go for Android Native , for other products one code base matter more by compromising some performance then they can go with React Native and if for some products most of the users are on web , they can create their app in webview, So know your audience and use cases and act accordingly.
Thanks a lot for reading the content.