我在 android 中实现 Firebase 动态链接时遇到了很大的问题。
我完全按照以下说明操作: https ://firebase.google.com/docs/dynamic-links/android
我的清单是正确的,我的 firebase 项目包含正确的 sha1 键。
如果我通过 ADB 触发,我的目标意图是打开,但 AppInviteInvitationResult 的状态始终为 CANCELED。
我尝试了一切,但找不到任何解决方案...
我的代码如下所示:
mGoogleApiClient = new GoogleApiClient.Builder(this)
.enableAutoManage(this, this)
.addApi(AppInvite.API)
.build();
boolean autoLaunchDeepLink = false;
AppInvite.AppInviteApi.getInvitation(mGoogleApiClient, this, autoLaunchDeepLink).setResultCallback(
new ResultCallback<AppInviteInvitationResult>() {
@Override
public void onResult(@NonNull AppInviteInvitationResult result) {
if (result.getStatus().isSuccess()) {
Intent intent = result.getInvitationIntent();
String deepLink = AppInviteReferral.getDeepLink(intent);
// MY CODE
}
}
});
onResult 被调用,但状态总是 CANCELED !
清单看起来像这样:
<activity
android:name="appsoluts.kuendigung.ActivityDeepLink"
android:theme="@style/AppTheme.NoActionBar"
android:screenOrientation="portrait"
android:parentActivityName="appsoluts.kuendigung.ActivityMain"
android:launchMode="singleTop"
android:configChanges="orientation|screenSize"
android:windowSoftInputMode="stateHidden|adjustResize">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="kuendigung.org" android:scheme="http"/>
<data android:host="kuendigung.org" android:scheme="https"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="bien-resilier.fr" android:scheme="http"/>
<data android:host="bien-resilier.fr" android:scheme="https"/>
</intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="appsoluts.kuendigung.ActivityMain" />
</activity>
有任何想法吗 ?