Patterns for accessing code from Dynamic Feature Modules [ https://medium.com/androiddevelopers/patterns-for-accessing-code-from-dynamic-feature-modules-7e5dca6f9123 ]
Modularization by Feature and Layer with Android Architecture Components [ https://medium.com/swlh/modularization-by-feature-and-layer-with-android-architecture-components-80bf317d737 ]
Navigation with Dynamic Feature Modules [ https://proandroiddev.com/navigation-with-dynamic-feature-modules-48ee7645488 ]
Exploring Dynamic Feature Modules at Swiggy [ https://bytes.swiggy.com/exploring-dynamic-feature-modules-at-swiggy-83019ebfa980 ]
Tag: android
Android app + OS
Android Calendar Intent [ https://itnext.io/android-calendar-intent-8536232ecb38 ]
Android + excel xls xlsx
Apache POI [ https://poi.apache.org/ ]
[https://mvnrepository.com/artifact/org.apache.poi/poi/4.1.1]
can be used in the android app. Multidex is needed.
But originally the library works well only with xls files.
To work with xlsx the Apache POI-ooxml is needed.
[https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml/4.1.1]
Also there is [https://github.com/andruhon/android5xlsx]
There is a issue with java.awt
also [https://github.com/dhatim/fastexcel]
Creating Excel files with C and libxlsxwriter
[https://libxlsxwriter.github.io/index.html]
Android Audio Video
MediaCodec (https://developer.android.com/reference/android/media/MediaCodec.html)
ExoPlayer (https://developer.android.com/guide/topics/media/exoplayer.html) (https://github.com/google/ExoPlayer)
https://github.com/googlesamples/android-audio-high-performance
Android и звук: как делать правильно (https://habrahabr.ru/post/339416/) (pdf)
Continue reading Android Audio Video
Android ORM Realm, ObjectBox or Room.
Realm, ObjectBox or Room. Which one is for you?