Michael Emelyanov
Michael Emelyanov
Supporting build types configurations by using only Forma API - Supported base build types: Debug, Release, Custom, None
Need to get napt-plugin and integrate by replacing kapt behavior for java code gen.
Necessary to move features from https://developer.android.com/reference/tools/gradle-api/7.0/com/android/build/api/dsl/BuildFeatures to Forma configuration. By default need to switch off all flags, but provide another solution for configuration BuildFeatures through Forma API
Necessary to support build types configurations for debug/release apk's. Main steps: - [x] POC DSL Forma build types - [x] Build Types supporting - [x] Proguards routines - [ ]...
Our sample uses Jetpack Navigation. It brought some strong dependencies through whole project, such as ``` HomeFragment.kt ... val navController = viewBinding.bottomNavigation.setupWithNavController( navGraphIds = navGraphIds, fragmentManager = childFragmentManager, containerId =...
Legacy part of our sample doesn't have almost clean architecture. That's why, we had some stuck trouble with relations between presentation layer and data layer. For example check out these...
Seems has some kind problem with `org.gradle.configureondemand=true` mode, when you're trying to run on emulator. Here some log: ``` FAILURE: Build failed with an exception. * What went wrong: Could...