Posted on Leave a comment

Huawei, HMS Core, AppGallery

[https://huaweimobileservices.com/]
[https://developer.huawei.com/consumer/en/doc/development]

Huawei объявляет конкурс приложений с призовым фондом в 1 млн. долларов
[https://apptractor.ru/info/conferences/apps-up.html]

Заглянуть в глаза дракону: 10 вопросов к Huawei Mobile Services
[https://habr.com/ru/article/505102/]

Continue reading Huawei, HMS Core, AppGallery
Posted on Leave a comment

Android App Startup

[https://developer.android.com/topic/libraries/app-startup]

The App Startup library provides a straightforward, performant way to initialize components at application startup. Both library developers and app developers can use App Startup to streamline startup sequences and explicitly set the order of initialization.

Instead of defining separate content providers for each component you need to initialize, App Startup allows you to define component initializers that share a single content provider. This can significantly improve app startup time.

AndroidX: App Startup
[https://proandroiddev.com/androidx-app-startup-698855342f80]
[https://github.com/husaynhakeem/android-playground/tree/master/StartupSample]

Continue reading Android App Startup
Posted on Leave a comment

android samsung dumpstate log

after some events
1. dial *#9900# and if the Debug Level is Disabled/LOW, tap to select MID. This restarts the device.
2. Again dial *#9900# and press “RUNDUMPSTATE/LOGCAT/”
3. When it is finished press “COPYTOSDCARD(INCLUDECP RAMDUMP)
4. In the main folder of the device filesystem, there will be a new folder called “log”. The log file should be there.

Posted on Leave a comment

What’s new in Jetpack

What’s new in Jetpack by Florina Muntenescu
[https://medium.com/androiddevelopers/whats-new-in-jetpack-1891d205e136]

[https://t.me/android_broadcast/1864]

👉 Hilt (https://dagger.dev/hilt/) (Alpha) – новый рекомендованный DI фреймворк. Работает поверх Dagger и имеет интеграцию с основными компонентами Android приложения, а так же библиотеками Jetpack, такими как ViewModel и WorkManager
👉 Paging 3 (https://developer.android.com/topic/libraries/architecture/paging/v3-overview) (Alpha) – новая версия библиотеки для пагинации. Теперь написана полностью на Kotlin, работает поверх Coroutine и поддерживает ошибки, повторы, обновления, а также хэдеры и футеры
👉 App Startup (https://developer.android.com/topic/libraries/app-startup) (Alpha)- библиотека для инициализации компонентов при запуске приложения
👉 WindowManager (https://developer.android.com/jetpack/androidx/releases/window) – библиотека для помощи в поддержке устройств с нестандартными форматами, например складываемые смартфоны

Continue reading What’s new in Jetpack