From 15899baacb688eff80d83f47b0e89029a4edb62e Mon Sep 17 00:00:00 2001 From: Evan Bacon Date: Fri, 17 Apr 2020 17:40:41 -0700 Subject: [PATCH] Update Android.ts (#1904) --- packages/uri-scheme/src/Android.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/uri-scheme/src/Android.ts b/packages/uri-scheme/src/Android.ts index aa1a4f0ea7..9c40fb0809 100644 --- a/packages/uri-scheme/src/Android.ts +++ b/packages/uri-scheme/src/Android.ts @@ -32,7 +32,7 @@ export async function addAsync({ if (!Scheme.ensureManifestHasValidIntentFilter(manifest)) { throw new CommandError( - `Cannot add scheme "${uri}" because the provided manifest does not have a valid Activity with \`android:launchMode="singleTask"\``, + `Cannot add scheme "${uri}" because the provided manifest does not have a valid Activity with \`android:launchMode="singleTask"\`.\nThis guide can help you get setup properly https://expo.fyi/setup-android-uri-scheme`, 'add' ); } @@ -67,7 +67,7 @@ export async function removeAsync({ if (!Scheme.ensureManifestHasValidIntentFilter(manifest)) { throw new CommandError( - `Cannot remove scheme "${uri}" because the provided manifest does not have a valid Activity with \`android:launchMode="singleTask"\``, + `Cannot remove scheme "${uri}" because the provided manifest does not have a valid Activity with \`android:launchMode="singleTask"\`.\nThis guide can help you get setup properly https://expo.fyi/setup-android-uri-scheme`, 'remove' ); }