feat: Add iOS platform support #60
No reviewers
Labels
No labels
Blocked
Good First Issue
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
Nexus/nexus!60
Loading…
Reference in a new issue
No description provided.
Delete branch "eleboucher/nexus:ios-support"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
3a1e36894etof84009e602just one small nitpick :)
@ -20,0 +28,4 @@final iosConfig = codeConfig.iOS;iosSdk = iosConfig.targetSdk;final minVersion = iosConfig.targetVersion;iosSdkPath = (await Process.run("xcrun", [Failures should be handled here. Maybe you can edit
lib/helpers/extensions/get_xcode_sdk.dartto take in a{String? sdkType}and just use that?@ -20,0 +45,4 @@: "$archTriple-apple-ios$minVersion.0";extraEnv = {"GOOS": "ios","CC": (await Process.run("xcrun", [Same here :)
@ -12,0 +19,4 @@if (sdkType != null) ...["--sdk", sdkType],"-f","clang",], "get XCode clang");Sorry for another nitpick but instead of splitting this into multiple methods can we not just
Future<String> getXCodeTool({String? sdkType, String? findTool})and then use e.g.getXCodeTool(iosSdk.type, "clang")?85ce14f193tod25d24a692