-
Notifications
You must be signed in to change notification settings - Fork 22
[WIP]Updates for MSAL 0.4 #22
base: master
Are you sure you want to change the base?
Conversation
@@ -30,8 +30,8 @@ | |||
|
|||
<!--Add in your scheme/host from registered redirect URI--> | |||
<data android:scheme="msauth" | |||
android:host= "YOUR_PACKAGE_NAME - must be registered at https://aka.ms/MobileAppReg" | |||
android:path= "/YOUR_DECODED_SIGNATURE_HASH - must be registered at https://aka.ms/MobileAppReg>" /> | |||
android:host= "com.azuresamples.msalandroidapp" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it was on purpose to keep it in this way.
android:host= "YOUR_PACKAGE_NAME - must be registered at https://aka.ms/MobileAppReg"
android:path= "/YOUR_DECODED_SIGNATURE_HASH - must be registered at https://aka.ms/MobileAppReg>" />
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. I'll put back the original values... prior to actually merging. Leaving it this way for testing.
} | ||
|
||
dependencies { | ||
implementation project(':msal') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the plan around using this value vs loading from Maven central?
|
||
@Override | ||
public void onError(@NonNull Exception exception) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should show a Toast
or dialog if this error gets hit - otherwise, users of the samples might be confused with a silent failure
|
||
@Override | ||
public void onError(@NonNull MsalException exception) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same feedback here regarding a Toast or dialog
No description provided.