Google Android App Bundle

  • Thread starter Thread starter Sushubh
  • Start date Start date
  • Replies Replies 4
  • Views Views 683

Sushubh

Admin
Staff member
Messages
413,584
Location
Gurgaon
ISP
Excitel
Airtel
Android App Bundle | Android Developers

The new app publishing format, the Android App Bundle, is an improved way to package your app. The Android App Bundle lets you more easily deliver a great experience in a smaller app size, allowing for the huge variety of Android devices available today. You don’t need to refactor your code to start benefiting from a smaller app.
 

Source

Check out the top 7 takeaways on Android App Bundles from this year’s Android Dev Summit!

1. Size matters: bigger apps are more at risk for slower downloads and uninstalls. You shouldn’t have to worry about the tradeoffs of having a bigger app. The new app model makes this a lot easier!

2. The Android App Bundle, the official app publishing format. Apps that have already adopted the bundle are seeing an average size saving of 35%, compared to a universal APK!

3. App developers around the world (like Twitter and Duolingo) have switched to the App Bundle and are seeing size savings.

4. Get android platform optimization and more size savings “out of the box” with uncompressed native libraries!

5. Modularize with dynamic features that can be installed on demand, deferred to a later time, or “fused” into the main app for pre-L devices. These features are all supported in production already.

6. Use the Play Core library to manage modules. To interact with the Play Store to request these on demand modules, use the Split Install API.

7. Build now with Android Studio, Gradle, and Unity!
 

Back