Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
79 views

Upon moving a view and it's ViewModel(where i am using Firestore) from the main app module to it's own module, my Canvas Previews crash with the error: XCPreviewAgent crashed due to an uncaught ...
0 votes
1 answer
57 views

I am building a simple multi-module app, and haven't really even added much but I am encountering this error when trying to build the app. I have this base-like ViewModel implementation(which is an ...
11 votes
3 answers
3k views

this is a continuation of the discussion I started here. I would like to find the best way to modularize Delphi source code as I'm not experienced on this field. I will be gratefull for all your ...
-1 votes
1 answer
33 views

hello all i am in deadlock please help i have three module in my android project 1 : App 2 : unityLibrary 3 : bluttooth module now i want to open the acitivity of App from unityLirbraryModdule but ...
1 vote
1 answer
855 views

I'm working on a large Flutter project where each feature is organized into its own package. In the main directory, I want to run flutter pub get to install dependencies for all the packages at once. ...
1 vote
1 answer
77 views

I want to separate the api from the implementation, and making implementation module depends on api modules, however I encounter the problem that api actually depends on the implementation and don't ...
0 votes
1 answer
52 views

I have the structure of folder as: folder_structure I want to use files which are present in deps folder in the dag files present in dags folder, how to do that? Can someone please help me with this I ...
15 votes
2 answers
6k views

I am new to Java 9 and was going though the modular video lectures by Java on YouTube. They mentioned 3 benefits of modularization- No missing dependencies No cyclic dependencies No split packages. ...
2 votes
1 answer
284 views

I'm using the version 7.23.1 of Snakemake. I'm using the modularization in snakemake and I'm getting a strange behavior. I would like to ask for your help in order to understand a bit more in-depth ...
0 votes
1 answer
744 views

I am trying to migrate my gradle project from groovy to kotlin dsl. Hopefully theres some one can help me. So, my project used modularization and this is how my project structure looks like root ├── ...
43 votes
12 answers
52k views

I have problem. Angular is sometimes showing error ERROR TypeError: Cannot read properties of undefined (reading 'onDestroy') I am getting this error when I am running ng serve, but if I use angular ...
0 votes
1 answer
103 views

I've been showing/hiding UI items using Shiny conditionalPanel() and shinyjs show, hide, and toggle functions. However, in this multi-module example I'm stuck. I'm trying to show/hide the selectInput()...
4 votes
1 answer
1k views

I have a module with several files, some of which have a few custom exceptions declared. These exceptions are primarily raised in the file they are declared, but sometimes they are also raised in ...
0 votes
0 answers
1k views

Im getting this error but I don't know why, since this core module is being imported only once The code App.Module imports: [ BrowserModule, BrowserAnimationsModule, HttpClientModule, ...
0 votes
0 answers
55 views

I'm doing a more complex project in c, but this example here is the same for what i need and the names of examples will just changed, but, again, is the same thing from what i am doing. Let's say I ...
0 votes
0 answers
49 views

I have a swift iOS app modularized. I want to show a youtube video inside the main app with the implementation done inside a module. I get the error below inside the main app when I execute the app ...
0 votes
1 answer
221 views

I have four Java packages in Eclipse: augustus, caligula, julius, and nero. I want to place augustus and caligula in a module. I want to place julius and nero in another module. How do I go about ...
0 votes
1 answer
81 views

My project is having feature1Module and feature2Module. These 2 are included in app module build gradle file. implementation project(":feature1Module") implementation project(":...
0 votes
1 answer
117 views

Using Gradle, for Android native development, when you modify code within a module and hit build, said module and all modules that depend on said module rebuilds. This usually is helpful, but I find ...
1 vote
1 answer
732 views

While researching about android modularization I've come across the term Dynamic Feature Module, however I've also noticed Feature Module. What are the differences? I've seen a lot of articles about ...
0 votes
0 answers
612 views

I try to realise multi module android app. I read modularization documentation section which is started here. There is Figure3 in feature modules section. This figure demonstrates connections between :...
0 votes
1 answer
888 views

I have removed the android library dependencies to some of the modules in my app and would like to convert these modules to pure 'java or kotlin' modules. What is the best way to do this in Android ...
0 votes
1 answer
763 views

I'm having some trouble with modularization for the prop types, when using react-navigation. My problem is: The React Navigation doc Typescript section suggests creating the types for each screen ...
8 votes
2 answers
6k views

I'm currently working on modularizing my application, so I'm putting each feature in a library module. In one of my features, I access the version code and name. However, although I defined them in ...
5 votes
0 answers
460 views

I am following the Now In Android sample for modularization and best practices with Jetpack Compose and I am a bit stuck with sharing a simple LocalDate state across several modules/features. I want ...
0 votes
1 answer
418 views

I am trying to break down my existing code into separate repos and integrate each repo through Swift Package Manager in the base codebase. I have used SPM to achieve the same for the repos hosted on ...
0 votes
0 answers
154 views

First of all, I don't know what I should call it, module, component, or library are all fitting for me, but gave all mixed results trying to figure this out. Problem I am working on a project in C, ...
2 votes
0 answers
175 views

I am creating SDK and want to modularize it. And prevent internal APIs from being exposed on your public interface. Want optional dependency based on features required. If features is not required we ...
0 votes
1 answer
205 views

Does anyone know of a way to template build.gradle files as modules are created? Right now the issue I have is that I want to be able to have the module's build.gradle contain only a small amount of ...
2 votes
0 answers
377 views

I'm using Snakemake and tried to order my overall pipeline structure by utilizing modules as the modularization approach suggests. However, one of my modules has a rule which depends on the ouput of ...
0 votes
1 answer
477 views

After i'm running test with bloc test, i got issue late error, if i change late with nullsafety their also will be return error, so what alternative to solve? when i try without bloc it's run as well ...
1 vote
1 answer
828 views

After I code iOS application for awhile, I faced problem with project's size and build time. I found some concept about super app / mini app. According a question, I implement my application and I ...
2 votes
1 answer
5k views

Is it possible to create package from existing project ( UIKit application ) in Xcode13 ? I have implemented application but it too big and take too much time on building phase. Because of that, I ...
2 votes
0 answers
802 views

I want to modularise my codebase to distribute it like third party libraries. I followed the article for the same. So far I have been able to split the code into three modules (Networking, Core & ...
2 votes
1 answer
1k views

I try to translate a LocalDateTime to the current used language like shown in this answer: https://stackoverflow.com/a/51843932 Running the program in Eclipse works as intended, but when it gets ...
0 votes
2 answers
67 views

As per the Corda coding guidelines, I have seperated out modules into contracts and workflows-common. There are workflows modules like workflows-party1, workflows-part2 etc. specific to a party. Now I ...
0 votes
0 answers
64 views

I'm new to the world of coding and this is my first post on stackoverflow. So please bear with me. So here's the problem. I've got a list of variables for some text values in one language (denoted as ...
1 vote
0 answers
76 views

Having Modular Architecture project. Reusable custom views are being moved to core-ui module. Features (fragments, sheets, etc) at the moment are still in app module. Before migrating custom views ...
2 votes
0 answers
477 views

My app has been growing quite a bit over the years, and I decided to give it a try to further modularize it by breaking it up into several frameworks and static libraries. After 4 days of work (and ...
0 votes
1 answer
2k views

How to run any one module in Flutter without having to run main.dart?
0 votes
1 answer
614 views

I generated two aar files from two libraries generated by me and added them to my main project by putting them in the libs folder. Now I can able to access classes of the aar from the main project. ...
2 votes
2 answers
1k views

I'm working on modularizing a test application with Android Compose and have the application stuff woking well, however it seems that if you want to add custom theming like colors and fonts you run ...
3 votes
0 answers
70 views

I have a few questions about namespaces and init.py in modular programming in python. I will divide my questions into two sections: without init and with init. Section 1) Without init.py Suppose that ...
17 votes
3 answers
778 views

AS: 3.5.3; Android Gradle Plugin: 3.5.0; Gradle: 5.6.2; We observed a drastic increase in the number of methods referenced in our app after splitting the 'app' module into several small modules. But ...
2 votes
0 answers
696 views

I am working on creating a modularised app. I had been using git submodules, but AFAIK, Swift Package Manager (SPM) in iOS works as a wrapper around git submodule. Can you please suggest Android ...
2 votes
1 answer
2k views

I'm new to Java and have been coding in JDK 11, but now using JDK 16. When I try to open a database connection method from the Spring Boot main class, by calling the database connection class, even ...
0 votes
1 answer
619 views

There is a straight forward implementation for fragment to fragment communucation using viewmodel and a host activity (ViewModel by activityViewModels()). However I have a case where there is no ...
3 votes
1 answer
527 views

Android project structure : -app module -featureA dynamic module -> depending on app module -featureB dynamic module -> depending on app module Use Case : I want to write end to end ...
-2 votes
1 answer
601 views

Error: Cannot find module '/Users/alejandraola/Documents/GitHub/SCL16-md-link/prueba.js' at Function.Module._resolveFilename (node:internal/modules/cjs/loader:924:15) at Function.Module._load (node:...
0 votes
1 answer
763 views

I have created a module named dependencies where I have put all depConstraints I need so I don't have to implement the dependency in each module individually. I have added Hilt dependencies in my ...