Questions tagged [multiple-projects]

Questions about the difficulties that can be faced while working on several projects at the same time.

Questions about the difficulties that can be faced while working on several projects at the same time. This can be for example:

  • how to share evolving code between projects
  • how to split / merge projects
  • how to handle several projects in a IDE
145 questions
22
votes
2 answers

Gradle add nested subproject from a multi-module project as dependency of another subproject

I have a complex, but interesting situation. This is a tree diagram of my folder structure: root |___ settings.gradle |___ p1 |___ p2 // depends on p3/sp1 |___ p3 |____|___sp1 |____|___sp2 I hope that explains the situation. Now how would I add…
smac89
  • 39,374
  • 15
  • 132
  • 179
17
votes
7 answers

I am using multiple firebase projects in an Android App. I am getting this error : Missing google_app_id. Firebase Analytics disabled

I have added following code to initialise there projects. FirebaseOptions options = new FirebaseOptions.Builder() .setApplicationId("1:129574837465:android:0123456773a52cf4f6") // Required for Analytics. …
mark922
  • 1,136
  • 2
  • 11
  • 20
16
votes
4 answers

cmake: setup multiple projects and dependiencies between them

I need help with write a good CMakeLists.txt for a C++ projects. I looked for answer, but I found anything. This is Structure of my projects: MainProj | ProjLib/ | | include/ | | | proj_lib.h | | src/ | | | proj_lib.cc | | …
BartekPL
  • 2,290
  • 1
  • 17
  • 34
13
votes
2 answers

How do I "mount" one github repository as a subfolder of another repository?

I have a github repository named "foo" (or rather "myusername/foo"). Now suppose I want to create a repository named "bar", which uses the code in foo; I could just make a copy of the files, but I don't want to need to pull updates - I want to…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
11
votes
7 answers

Android Activity under Eclipse/ADT with Project Dependencies (Failed resolving XY)

I tried to keep a game project quite platform independent so I split it up into three projects from low-level to top android specific level like that: engine, game, android game. The involved classes/interfaces in the error are those: (low level)…
PiLLe
  • 111
  • 1
  • 4
10
votes
1 answer

SelfHosted AspNet WebAPI With Controller Classes In Different Project

I have created a SelfHosted AspNet WebAPI with Visual Studio 2012 (.NET Framework 4.5). I enabled SSL for the WebAPI. It works fine when the controller is defined in the same project. But when I add a reference of another project, containing…
user1624372
10
votes
3 answers

How to use functions from different C++ projects in Visual Studio 2010?

I would like to build two C++ projects in the same solution in Visual Studio 2010 that can interact with each other. I have created a solution under directory C:\Users\me\Desktop\SolutionDir. The two projects have been created respectively under…
9
votes
3 answers

How to copy multiple projects into single folder in eclipse

I have two projects, Project1 and Project2. Now i want to copy this projects into eclipse workspace but i want these projects to be in a single folder like below. Eclipse Workspace -> Project -> Project1, Project2 i.e Project1 and Project2 should be…
venu
  • 91
  • 1
  • 2
6
votes
2 answers

How to search multiple Projects in GitLab

I am trying to find a way to search multiple project's code in gitlab CE. Has anyone encountered this before, or have a recommended approach? (I realize that if this is even possible, then I would likely need to create a script that mimics the…
Liv MacIntosh
  • 153
  • 1
  • 10
5
votes
2 answers

Sharing Json Schema files among projects with versioning

Problem We have a few independent projects (micro-services) that at some point in their life will refer to some JSON schema files, needles to say that each project has its own programming stack (mostly Nodejs and Golang though). What are the best…
sepisoad
  • 2,201
  • 5
  • 26
  • 37
5
votes
1 answer

Copy User Control from one project to another within same solution

Occasionally, a C# project will have a user control in it that belongs to another C# project and I will have to move it over. Attempting to simply copy + paste that user control over results in namespace errors. Let's say project 1 has a namespace…
mccoyrjm
  • 142
  • 1
  • 13
5
votes
1 answer

Java reflection loss of annotation information

I'm having an issue with reflection. I decided I wanted to create a SQL Query Generator using reflection. I created my own annotations to determine what classes can be used, what attributes can be stored ect. The code works as I want it to, however…
billy.mccarthy
  • 122
  • 1
  • 11
5
votes
4 answers

How do I fork multiple projects into one repository with git?

I have a 3 projects I'd like to fork. They're all related to each other - changing one will likely require a change to another. Because they're all related, I'd like to create 1 repository for the forks, while maintaining the ability to pull down…
Dane O'Connor
  • 75,180
  • 37
  • 119
  • 173
4
votes
7 answers

Multiple applications in single solution

I believe this is possible but unsure how to go around it, I need to create a server/client solution, normally I would create a new solution for the server and a new one for the client however I am looking to do this within a single solution as…
Neo
  • 2,305
  • 4
  • 36
  • 70
4
votes
1 answer

Android: using resources from another project in my workspace

I am fairly new to Android development - coming from a WPF background. I have created two Android projects in my "workspace" in Eclipse. One is called "TestProject", and the other called "TestLibraryProject". Inside of "TestLibraryProject" I have…
David
  • 1,847
  • 4
  • 26
  • 35
1
2 3
9 10