Redirect Fails: Site can’t be reached after upgrade to 3.0

Hey Dan

Yes, I had gone through the migration guide, and changed the callback url as required, after updating the url. Nor am not using expo in my project.

To confirm, I just re cloned the auth0-react-native-sample project again and configured according to the readme from scratch and still no luck with fresh start…After logging in, still getting “This site can’t be reached” in android…ios works fine.

Build.gradle:

manifestPlaceholders = [auth0Domain: "https://dev-6grfdf7yl20x0nrn.us.auth0.com", 
        auth0Scheme: "${applicationId}.auth0"]

Manifest:

<activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
        android:launchMode="singleTask"
        android:windowSoftInputMode="adjustResize"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
      </activity>

config

const config = {
  clientId: '8FW1FdItN2EsPSugFHFACDwskxuKjpxS',
  domain: 'dev-6grfdf7yl20x0nrn.us.auth0.com',
};

Application Callback URLs Set On Dashboard:

com.auth0samples.auth0://dev-6grfdf7yl20x0nrn.us.auth0.com/android/com.auth0samples/callback, 
com.auth0samples.auth0://dev-6grfdf7yl20x0nrn.us.auth0.com/ios/com.auth0samples/callback