Daniel Lacasse
Daniel Lacasse
This issue is a brain dump in relation to improving testing coverage for Nokee. I will try my best to untangle everything. See https://github.com/nokeedev/gradle-native/issues/514, https://github.com/nokeedev/gradle-native/issues/513 and https://github.com/nokeedev/gradle-native/issues/526 for some short...
The automatic `pod install` may take a long time to complete. During that time, Gradle seems stuck: ``` $ gr tasks Checking for latest... 0% INITIALIZING [34s] > Evaluating settings...
Projects like [GSCXScanner](https://github.com/google/GSCXScanner) explicitly mention that the required project must be placed under the same parent. The general idea is both projects should be part of a bigger project, so...
Xcode doesn't allow users to specify a target with the same name. However, users can still specify targets with the same name in different cases. The most important one is...
The inspect task will allow users (and us) to see a summary of what was detected from the Xcode project. We are also interested in knowing what feature of the...
Path resolution requires effective build settings. This issue focus on providing the build settings as seen by `xcodebuild`. This may not be optimal due to the requirement of forking an...
Some Xcode build requires external custom paths to be provided to Xcode, via Preferences -> Locations -> Custom Paths. Without those values, some paths may not resolve correctly. We should...
`PBXAggregateTarget` doesn't seem to have any `productReference`. However, in this very particular scenario, the target has a single script build phase which copy a xcframework to a build dir. There...
Gradle process for resolving settings plugins follow something like this: - Configure `pluginManagement` block - Read all of `plugins` block - For each plugin id in `plugins` block, try to...
We caught some duplication issues because we were eagerly configuring a component on the entity. In this example, we were providing an implicit `ParentComponent` to all entities based on their...