What is checklist for android GO? I want to update my android app for android GO operating System. how to check my App is compatible Android GO?
Checklist items for Android-GO
605 Views Asked by MANI At
2
There are 2 best solutions below
2

Checklist items for Android (Go edition):
- targetSdkVersion ≥ API 26
- The app should run smoothly on devices with ≤ 1GB RAM.
- App size ≤ 40MB
- App startup time ≤ 5 seconds
- The Proportional Set Size (PSS) of the app's RAM usage ≤ 50MB, For games, the PSS of the game's RAM usage ≤ 150
You can use the Multiple APK feature on the Play Console to distribute a specific APK for Android (Go edition) devices but you should only do so without compromising the experience (e.g. you should avoid removing features).
The APK targeting Android (Go edition) devices needs to declare <uses-feature android:name="android.hardware.ram.low" android:required="true">
, target at least API Level 26, and have a higher version code than the non-Go edition APK.
Checkout more details at official android developer site here Optimize for devices running Android (Go edition)
Please find the requirements to be Android go ready below
What is PSS?
The "proportional set size" (PSS) of a process is the count of pages it has in memory, where each page is divided by the number of processes sharing it. So if a process has 1000 pages all to itself, and 1000 shared with one other process, its PSS will be 1500.
Checkout more details at official android developer site here Optimize for devices running Android (Go edition)