Questions tagged [modularization]

The aim of the software modularization process is to partition a software system into subsystems to provide an abstract view of the architecture of the software system, where a subsystem is made up of a set of software artifacts which collaborate with each other to implement a high-level attribute or provide a high-level service for the rest of the software system.

Knowing the software architecture, software developers can perform fit-gap analysis and estimate the costs and risks of the required changes, and also will be able to determine which components can be reused. However, for large and complex software systems, the software modularization cannot be done manually, owing to the large number of interactions between different artifacts, and the large size of the source code. Hence, a fully automated or semi-automated tool is needed to perform software modularization.

134 questions
2
votes
0 answers

Publishing the XCFramework

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 & Home). The problem is occurred while archiving the…
2
votes
0 answers

iOS Framework Module Not Loading in App on Physical Target

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 still some work to do) I am rather pleased with the…
user3386180
2
votes
2 answers

How to link main with made libraries?

I'm trying to link libraries I made to main source code, but it throws this error. I've been searching for last two hours how to fix this but nothing worked for me. Compiling: cd "c:\Users\miros\OneDrive\Documents\C codes\labovi" gcc 01main.c -o…
qu4lizz
  • 317
  • 2
  • 12
2
votes
0 answers

React native modularization

Currently, I need to modularize an app into smaller modules. As far as I've known, modularization is the concept of separating an app into smaller components, which will be developed by a specific team. Finally, these modules will be merged into a…
hrtlkr29
  • 383
  • 1
  • 7
  • 21
2
votes
1 answer

How to share ngrx state between lazy loaded modules, can we have a shared module to do so?

Want to implement shared store module for sharing state between 2 feature modules Can some one please share stackblitz or git repo link for shared state module
Naina
  • 21
  • 3
2
votes
0 answers

How to solve package is declared in module, but module does not read it?

I am migrating my development environment to another pc. I use NetBeans 10, open JDK11, JavaFX. When I import the main project into NetBeans I get the following error: on: import java.util.logging.Level; import java.util.logging.Logger; error…
2
votes
0 answers

Change in private method rebuilds Gradle dependant module

so I have an Android project with a module App that depends on a module A that depends on a module B (App -> A -> B), in such a way that the gradle file of the module A looks like this: ... implementation project(':feature_B') ... Then in the B…
Hannibalem
  • 483
  • 5
  • 7
2
votes
0 answers

Should I include all my custom exceptions in one file?

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 other files in the module. Is it best practice to…
Ian
  • 5,704
  • 6
  • 40
  • 72
2
votes
1 answer

How to programmatic render JSP files?

Currently, I'm using Velocity instead of JSP, for its flexibility. For some reasons, I need to distribute my web modules in jar archive, rather than war archive`. I have read the servlet specification, though, but I didn't find a way to…
Lenik
  • 13,946
  • 17
  • 75
  • 103
2
votes
1 answer

Android resources modularization

I have my Android project divided into 5 modules. The 'app' module handles all the views and processing with the UI having all the resource drawables. Now, I am implementing an algorithm to compare images and the source code must not be in the 'app'…
2
votes
4 answers

Modularising a C# Compact Framework 2.0 Application

We're currently developing a new piece of hand-held software. I cant discuss the nature of the application, so I'll use an example instead. We're designing hand-held software for managing a school. We want to modularise each aspect of the system so…
djdd87
  • 67,346
  • 27
  • 156
  • 195
2
votes
0 answers

A JavaScript Concatenator library to achieve data hiding under modularization

JavaScript Concatenator I'm considering writing a JavaScript library to achieve Data Hiding under Modularization. I hope to get some inputs on whether this will be useful and what are the potential problems. Let's me explain the problem first. What…
Boyang
  • 2,520
  • 5
  • 31
  • 49
2
votes
1 answer

Retrievable logging in modular programing in C++

My task basically was to build a specific module for an existing system. The module works properly, but now I should place log entries inside the code. Since this is only a module of the final system the logging level should be configured outside…
2
votes
1 answer

Modular Java Web Application

We have a rich web application based in Java & Spring framework which have many functionalities and classes. recently something sparked in my mind that why not we provide modularity to make it even better. what I mean by modularity is to provide a…
Mehdi
  • 3,795
  • 3
  • 36
  • 65
2
votes
1 answer

Regarding Module Pattern in JavaScript

i just read a small article on code project for Module Pattern in Java Script. after reading javascript code few area was not very clear the way code has been written. i wrote javascript but i am not familiar with writing javascript in advance way.…
Thomas
  • 33,544
  • 126
  • 357
  • 626
1 2
3
8 9