diff --git a/AsyncSwift/AsyncSwift.entitlements b/AsyncSwift/AsyncSwift.entitlements index 903def2..3575a32 100644 --- a/AsyncSwift/AsyncSwift.entitlements +++ b/AsyncSwift/AsyncSwift.entitlements @@ -4,5 +4,9 @@ aps-environment development + com.apple.developer.associated-domains + + applinks:asyncswift.info + diff --git a/AsyncSwift/AsyncSwiftApp.swift b/AsyncSwift/AsyncSwiftApp.swift index 255fa6e..4effa71 100644 --- a/AsyncSwift/AsyncSwiftApp.swift +++ b/AsyncSwift/AsyncSwiftApp.swift @@ -16,6 +16,9 @@ struct AsyncSwiftApp: App { WindowGroup { MainTabView() .environmentObject(appData) + .onOpenURL { url in + print(url) + } } } } diff --git a/README.md b/README.md new file mode 100644 index 0000000..75d822d --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# AsyncSwift \ No newline at end of file diff --git a/apple-app-site-association b/apple-app-site-association new file mode 100644 index 0000000..b77760d --- /dev/null +++ b/apple-app-site-association @@ -0,0 +1,17 @@ +{ + applinks: { + details: [ + { + appIDs: ["76AJ433CP5.com.kim.AsyncSwift"], + components: [ + { + /: “*” + } + ] + } + ] + }, + "appclips": { + "apps": ["76AJ433CP5.com.kim.AsyncSwift"] + } +} \ No newline at end of file