Bala
Bala

Reputation: 1304

Deep-Linking in Framework using Domain URL in iOS

I gonna give support for Deep-Linking in my Framework. I analysed lot of Tutorial, All are detailed about Universal Linking and URL Scheme.

For Universal Linking I need to host apple-app-site-association file in associated domain. The apple-app-site-association file contain team ID + Bundle ID. Its not scalable in Framework case.

For URL Scheme we need to redirect to custom URI Scheme.

Apart from this, I looking a solution as like as Android App Links.

Is there any way to do Deep-linking with Domain URL, without using Universal Linking?

Upvotes: 1

Views: 794

Answers (1)

clayjones94
clayjones94

Reputation: 2828

No, you must use Universal Links. Apple needs you to verify that you actually own that domain and that it is associated with your app. Same with Android app links. Your only option is to try and use URI schemes.

Upvotes: 2

Related Questions