Amazon web services (放大kotlin)无法重定向到自定义URL方案

Amazon web services (放大kotlin)无法重定向到自定义URL方案,amazon-web-services,kotlin,Amazon Web Services,Kotlin,我正在尝试集成放大联邦身份验证机制,但没有成功。遵循AWS现场文件中规定的说明 以下是意图配置: <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl=

我正在尝试集成放大联邦身份验证机制,但没有成功。遵循AWS现场文件中规定的说明

以下是意图配置:

    <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="federatedidentity" />
        </intent-filter>
    </activity></application>  

应用程序启动AWS托管的UI页面,但无法重定向到本机应用程序。调试浏览器窗口(托管UI)时,我看到以下警告:

导航无法访问:联邦成员didentity://callback?code=auth-代码在这里


请有人帮忙。

将操作主界面更改为查看并添加类别默认值解决了问题将操作主界面更改为查看并添加类别默认值解决了问题