如何正确处理android intent-filter?

时间:2019-05-15 02:47:33

标签: android google-chrome react-native android-intent intentfilter

我正在尝试在我的本机应用程序中处理Slack身份验证。在Slack身份验证成功之后,我想将用户从浏览器重定向回应用程序。

在带有Safari的IOS上,一切正常。我在.plist文件中配置了URL设置,但是在Android上,我很难正确设置意图过滤器。我认为我的问题来自MainActivity.java文件,但我不确定。

这是我的AndroidManifest.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.willofeedback">
    <uses-permission android:name="android.permission.INTERNET" />
    <application
        android:name=".MainApplication"
        android:label="@string/app_name"
        android:icon="@mipmap/ic_launcher"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:allowBackup="false"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:launchMode="singleTask"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
            android:windowSoftInputMode="adjustResize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </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:scheme="willofeedback" />
            </intent-filter>
        </activity>
        <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
    </application>
</manifest>

这是我的MainActivity.java文件:

package com.willofeedback;

import com.facebook.react.ReactActivity;
import com.facebook.react.ReactActivityDelegate;
import com.facebook.react.ReactRootView;
import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView;

public class MainActivity extends ReactActivity {
    @Override
    protected String getMainComponentName() {
        return "willofeedback";
    }

    @Override
    protected ReactActivityDelegate createReactActivityDelegate() {
        return new ReactActivityDelegate(this, getMainComponentName()) {
            @Override
            protected ReactRootView createRootView() {
            return new RNGestureHandlerEnabledRootView(MainActivity.this);
            }
        };
    }
}

当我尝试转到intent://#Intent;scheme=willofeedback;package=com.willofeedback;end;时,什么都没有发生,它的行为就像经典的Google搜索一样。我期望的是像IOS上的Safari一样重定向到应用程序的请求。

当我在终端中运行以下命令时,它运行良好,并且应用程序正在打开:

adb shell am start -a android.intent.action.VIEW -d "willofeedback://" com.willofeedback

如果有人可以帮助我,那就太好了! 感谢开发者社区!

更新

它可以在版本22上运行,所以我怀疑更改的方式!

0 个答案:

没有答案