带有 openid / AppAuth-Android 的重定向 URI 中的多实例
Multi instance in Redirect URI with openid / AppAuth-Android
当我使用这个库时:
https://github.com/openid/AppAuth-Android
尝试使用深层 link 并打开应用程序时遇到问题。在这种情况下,我有一个具有相同名称和包名称的应用程序的多实例。我只想举一个例子。 (当我触摸其中一个实例时重定向发生但当触摸另一个时没有任何反应)
一切正常,只有我有这个问题。
我也看到了这些问题:
https://github.com/openid/AppAuth-Android/issues/329
https://github.com/openid/AppAuth-Android/issues/481
https://github.com/openid/AppAuth-Android/issues/491
这是我在清单中的代码:
<activity
android:name=".util.deeplink.appAuth.RedirectUriReceiverActivity"
tools:node="replace">
<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:scheme="test"
android:host="ops" />
</intent-filter>
</activity>
我们找到了解决方案。我们只需添加
<activity android:name="net.openid.appauth.RedirectUriReceiverActivity"
tools:node="replace"/>
除了我们的习惯 class:
<activity
android:name=".util.deeplink.appAuth.RedirectUriReceiverActivity"
android:windowSoftInputMode="stateAlwaysHidden">
进入清单文件
当我使用这个库时: https://github.com/openid/AppAuth-Android
尝试使用深层 link 并打开应用程序时遇到问题。在这种情况下,我有一个具有相同名称和包名称的应用程序的多实例。我只想举一个例子。 (当我触摸其中一个实例时重定向发生但当触摸另一个时没有任何反应)
一切正常,只有我有这个问题。 我也看到了这些问题:
https://github.com/openid/AppAuth-Android/issues/329
https://github.com/openid/AppAuth-Android/issues/481
https://github.com/openid/AppAuth-Android/issues/491
这是我在清单中的代码:
<activity
android:name=".util.deeplink.appAuth.RedirectUriReceiverActivity"
tools:node="replace">
<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:scheme="test"
android:host="ops" />
</intent-filter>
</activity>
我们找到了解决方案。我们只需添加
<activity android:name="net.openid.appauth.RedirectUriReceiverActivity"
tools:node="replace"/>
除了我们的习惯 class:
<activity
android:name=".util.deeplink.appAuth.RedirectUriReceiverActivity"
android:windowSoftInputMode="stateAlwaysHidden">
进入清单文件