Skip to content

Commit

Permalink
add missing data filter on PasswordlessActivity (demo)
Browse files Browse the repository at this point in the history
  • Loading branch information
lbalmaceda committed Sep 16, 2016
1 parent fdf8d75 commit 8002e72
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<!--Auth0 Lock-->
<activity
android:name="com.auth0.android.lock.LockActivity"
android:label="@string/app_name"
android:label="Classic Lock"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/MyLock.Theme">
Expand All @@ -46,7 +46,7 @@
<!--Auth0 PasswordlessLock-->
<activity
android:name="com.auth0.android.lock.PasswordlessLockActivity"
android:label="@string/app_name"
android:label="Passwordless Lock"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/MyLock.Theme">
Expand All @@ -56,6 +56,11 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data
android:host="@string/com_auth0_domain"
android:pathPrefix="/android/com.auth0.android.lock.app/callback"
android:scheme="https" />

<data
android:host="@string/com_auth0_domain"
android:pathPrefix="/android/com.auth0.android.lock.app/email"
Expand Down

0 comments on commit 8002e72

Please sign in to comment.