[AppGalleryConnectLinkManageService]the ios bundleId does not have permission

160 Views Asked by At

i wrote a method to generate link using Applinking Huawei

  fun generateLink(text: String, promo: String): Single<String> = Single.create { emitter ->
    AppLinking.newBuilder()
            .setUriPrefix(Const.Deeplink.BASE_URL_APPLINKING)
            .setDeepLink(Uri.parse(Const.Deeplink.BASE_WEB + addParams(mapOf(Const.Deeplink.PARAM_PROMOCODE to promo))))
            .setAndroidLinkInfo(AppLinking.AndroidLinkInfo.newBuilder()
                    .setAndroidDeepLink(AGS + Const.Deeplink.PACKAGE_NAME_ANDROID)
                    .build()
            )
            .setIOSLinkInfo(AppLinking.IOSLinkInfo.newBuilder()
                    .setIOSDeepLink(AGS + Const.Deeplink.PACKAGE_NAME_IOS)
                    .setBundleId(Const.Deeplink.PACKAGE_NAME_IOS)
                    .build()
            )
            .buildShortAppLinking(ShortAppLinking.LENGTH.SHORT)
            .addOnSuccessListener { link ->
                Timber.e("${link.testUrl}")
                text.plus("\n").plus(link.shortUrl?.toString()).also {
                    emitter.onSuccess(it)
                    Timber.e(it)
                }
            }.addOnFailureListener {
                var dr = Const.Deeplink.PACKAGE_NAME_ANDROID
                var df = Uri.parse(Const.Deeplink.BASE_WEB + addParams(mapOf(Const.Deeplink.PARAM_PROMOCODE to promo)))
                emitter.onError(it)

            }
}

but a have error

com.huawei.agconnect.applinking.AppLinkingException:  code: 204865654 message: [AppGalleryConnectLinkManageService]the ios bundleId does not have permission

has anyone come across this? PACKAGE_NAME_IOS is valid com.65gb.xxxxx.xxxxx

after when work enter image description here

1

There are 1 best solutions below

9
On

Update

You need to integrate the AppLinking iOS SDK into your iOS project whose bundleID is com.65gb.xxxx.xxxx, and then use the handleAppLinking interface to receive and obtain the configured iOSDeepLink.

For details about how to receive AppLinking in iOS, see the document.

enter image description here


Ensure that the package ID of your iOS app is the same as the parameter passed using the setBundleId() method. You can view the package ID in AppGallery Connect.

App Linking is used for all apps under a project. You can implement redirections only between apps whose package names are in the same project in AppGallery Connect.