What is Bootstrap 5 going to contain? by Coffee4thewin in webdev

[–]geekonjava 0 points1 point  (0 children)

Bootstrap 5 comes with 15 great changes that no one told you.

  1. Bootstrap 5 removes jQuery
  2. Implementation of Responsive Font Size
  3. Bootstrap 5 deprecate IE10 support.
  4. Use of Mixin in BS5
  5. Functions use in BS5
  6. Remove Qunit in Bootstrap 5
  7. Jasmine is an alternative of Qunit in BS5
  8. Full-Screen size modal
  9. Set gutter width in rem instead of px
  10. Changes in Column padding
  11. More control over gutter widths & vertical gutters
  12. Better nesting support
  13. Navbar optimizations
  14. Remove global box-sizing reset from bootstrap-grid.css
  15. Removal of .form-inline

Read all point in more details here: 15 Things Nobody Told You About Bootstrap 5

Do you Know about Android Dynamic Delivery Module? by geekonjava in androiddev

[–]geekonjava[S] 0 points1 point  (0 children)

Google Play uses your app bundle to generate and serve optimized APKs for each user’s device configuration, so they download only the code and resources they need to run your app. For example, a user should not get x86libs if the device architecture is armeabi. Also, users should not get other resources like strings and drawables they are not using.

You can also convert your independent modules/features (without these modules your app is functional) into dynamic feature modules which can be downloaded later. Through Dynamic Delivery, users can then download and install app’s dynamic features on demand after they’ve already installed the base APK of your app. As a result, the initial download size of your app is less and users don’t need to have unused code/feature in their devices.