2026-04-11 iOS 26.0
Mac: Ctrl + Space = Search
> Xcode
> Settings > Accounts > Apple ID = AA
> Download Manual Profiles
> Project = HelloWorld
> App Target > Signing & Capabilities
> Team = AA (not Personal Team)
> Run Destination = "Any iOS Device (arm64)"
> Target > General > Identity
> Bundle ID = com.artificial-autonomy.HelloWorld
> Menu > Product > Archive
> Select latest archive > Distribute
> App Store Connect
> Name = AA-HelloWorld
> Bundle ID = com.artificial-autonomy.HelloWorld
2026-04-01 iOS 26.0
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
Link("artificial-autonomy.com",
destination: URL(string: "https://www.artificial-autonomy.com")!)
}
.padding()
}
}
#Preview {
ContentView()
}

