android-module Questions
3
I have 2 modules in my android app. Core module and one feature module. Currently I have 3 dependencies common for these 2 modules and I am adding it in both modules gradle file (Which leads to mor...
Dopester asked 21/8, 2019 at 6:16
6
Solved
I have a extension method:
fun StoresClientFragment?.onClickButtonBack(){
this?.listener?.onStoresFragmentClickBtnMenu()
}
The app installs without any errors; but when the method is invoked at r...
Dysprosium asked 2/3, 2021 at 16:27
4
Solved
I'm creating an Android Library for basic dialogs. Right now, all I have is a basic-dialogs module along with the app module. I'm calling a composable in the basic-dialogs module from the Activity ...
Ilsa asked 14/8, 2022 at 0:59
10
Flutter newly created app gives error when using fire base.
How should i fix this problem as it is asking flutter app main activity cannot be cast to android app activity.
04-05 21:16:07.570 2739...
Defamatory asked 5/4, 2020 at 16:58
1
Solved
I have an Android application module (A) and an Android library module (B). Both (A) and (B) contain these same dependencies:
dependencies {
implementation 'com.jakewharton:butterknife:8.8.1'
an...
Turnspit asked 5/8, 2018 at 12:34
4
Solved
I'm having a problem starting an activity in a downloaded feature module when it's published to the play store. It always crashes on setContentView() in the downloaded modules activity.
java.lang...
Bellinzona asked 5/2, 2019 at 15:9
0
I'm trying to add DeepLinkDispatch library (by airbnb) in my project in order to handle deeplinks. The project has different modules and some links needs to be handled by Activity's in this modules...
Trigraph asked 16/2, 2022 at 17:57
2
I have an app module with main navigation graph and feature module with it's own navigation graph. Feature navigation is included to main navigation graph. So feature fragments and navigation graph...
Individualize asked 2/10, 2019 at 15:53
2
Solved
I have a multi modular android app setup which consists of a Data, Domain and Presentation module. The Domain module is java-only. I know it's possible to support hilt in non-android modules by add...
Obtect asked 7/6, 2021 at 9:51
3
I am trying to implement Dynamic delivery type App.
First I create new project after that create Module for dynamic steps for this
Select File > New > New Module from the menu bar and Create New ...
Hennahane asked 16/10, 2018 at 6:12
1
Building library module. And in the sample application which is using the library module it has
@GlideModule
class DPAppGlideModule : AppGlideModule() {
override fun isManifestParsingEnabled(): ...
Bartender asked 20/3, 2019 at 15:11
4
I am trying to create a new module. Elements of this module should be visible to the first module.That is why I add implementation project(":messanger") to Build.gradle(:app) but it gives the follo...
Disillusion asked 29/2, 2020 at 4:33
1
Solved
I have a huge Android project, composed of several modules.
Ideally, I would like a fully automated way to extract all current strings.xml files, from all submodules and all resource qualifiers - ...
Duct asked 4/10, 2019 at 11:39
1
Solved
Now i am converting my android code to modularized architectural approach. Facing issues when trying add a dependency on "app" module from "chat" module.
I have the following build config for the ...
Womble asked 5/2, 2020 at 9:29
2
Solved
Created a new Dynamic Feature Module: dynamic, build fails with the below exception:
Execution failed for task ':dynamic:processDebugManifest'.
Expected configuration ':dynamic:debugCompileClass...
Nazi asked 24/10, 2018 at 20:5
1
Solved
I have android module named A. I added dependency to another module B like so: implementation project(':B'). While the module A builds without an issue, when I try to build (and run) integration te...
Johniejohnna asked 9/9, 2019 at 8:21
0
My modularized Android project makes use of subprojects in the root build.gradle in order to minimize the configuration needed in each submodule's build.gradle. For example I can use it to add our ...
Bleach asked 14/6, 2019 at 22:0
0
For the last little while, I am attempting to change a multi-module Android app to use the new com.android.dynamic-feature plugin. Part of this change is moving my instrumentation tests out of the ...
Skyla asked 27/2, 2019 at 23:3
1
I want to add a native (integration test) module to a Cordova Android project.
For fully native projects, you just add a new module, commit and be done with it. But for Cordova I of course don't r...
Mantinea asked 3/10, 2017 at 23:33
2
Solved
I want to make a separate module so I can share it between projects. The module is going to have android components. So upon creating a new module the options are Phone & Tablet module and Andr...
Doubleteam asked 29/8, 2017 at 22:39
3
I have two modules in android studio
Standard android app module
domain module
The domain module in been added to both settings.gradle and build.gradle
include ':mobile', ':domain' &
...
Egomania asked 26/5, 2017 at 9:3
2
Solved
Is it advantageously to have multiple modules in an Android Studio Project over having only a single large app-module?
I know about Android Modules in general and the advantages of SOLID so my foc...
Prurigo asked 13/1, 2017 at 10:37
1
© 2022 - 2025 — McMap. All rights reserved.