apache / apache/cordova-node-xcode
pbxProject.prototype.addFramework: automatically create Frameworks Group if it does not exist
- Lenguaje dominante
- JavaScript
- Estrellas
- 217
- Forks
- 102
- Merge medio
- 2 d 3 h
- PR fusionados (30 d)
- 6
Descripción
**This is a feature proposal**
**Initial Situation**:
Your xcode project tree looks like this:

You have a Xcode project without a `Framworks` group and you want to add a new framework using `pbxProject.prototype.addFramework`.
**Current behaviour**:
The `Frameworks` group is created but not added to the `mainGroup` of the project which references all files (that are not part of a subgroup) and all groups (that are no subgroups).
If you open the updated xcode project with xcode you see the following:

This is because xcode cannot find a reference to the `Frameworks` group on the `mainGroup` and therefore "autofixes" the project by adding the library added with `pbxProject.prototype.addFramework` to a newly generated group `Recovered References`.
**Expected behaviour**:
The `Framework` group is created and also automatically added to the `mainGroup`.
When you open the project in xcode it should look like this:

**Current workaround:**
Add the `Frameworks` group to `mainGroup`manually:
```js
const project = xcode.project(projectPath);
project.parseSync();
project.addFramework(path.resolve(frameworksDirectory, 'GoogleInterchangeUtilities.framework'), {
customFramework: true,
embed: true,
link: true,
});
const mainProject = project.getPBXGroupByKey(project.getFirstProject().firstProject.mainGroup);
if (!mainProject.children.some(children => children.comment === 'Frameworks')) {
const [groupKey] = Object.entries(project.hash.project.objects['PBXGroup']).find(
([, group]) => group.name === 'Frameworks',
);
project.addToPbxGroup(groupKey, project.getFirstProject().firstProject.mainGroup);
}
```
If you are okay with this feature proposal I would love to implement it!
Guía de contribución
Línea de trabajo
Empieza en pbxProject.prototype.addFramework y sigue cómo se gestionan el grupo Frameworks y project mainGroup. Usa la solución alternativa del issue como referencia del comportamiento. Se considera terminado cuando un grupo Frameworks ausente se crea y también es referenciado por mainGroup, de modo que Xcode no coloque el framework en Recovered References.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- ios, javascript, nodejs
- Área
- mobile
- Tipo de issue
- Nueva funcionalidad
- Dificultad
- 3/5
- Tiempo estimado
- 1-2 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 42/100