Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove native auth from MSAL test app #2248

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ msal/src/main/java/com/microsoft/identity/nativeauth/ @AzureAD/NativeAuthTeam
msal/src/test/java/com/microsoft/identity/nativeauth/ @AzureAD/NativeAuthTeam
msal/src/test/java/com/microsoft/identity/client/e2e/tests/network/nativeauth/ @AzureAD/NativeAuthTeam
msal/src/androidTest/java/com/microsoft/identity/nativeauth/ @AzureAD/NativeAuthTeam
msal/testapps/testapp/src/main/java/com/microsoft/identity/client/testapp/nativeauth @AzureAD/NativeAuthTeam

# If you are interested in reviewing or getting notified of changes in a particular area
# Please add your alias against that specific path below
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,4 @@ public enum AuthScheme {
BEARER,
POP
}

/**
* Constants used in native auth flows.
*/
public static final String STATE = "state";
public static final String CODE_LENGTH = "code_length";
public static final String SENT_TO = "sent_to";
public static final String CHANNEL = "channel";
}
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,6 @@ public boolean onNavigationItemSelected(final MenuItem item) {
return false;
}
fragment = new AcquireTokenFragment();
} else if (menuItemId == R.id.nav_native) {
if (getCurrentFragment() instanceof NativeAuthFragment) {
return false;
}
fragment = new NativeAuthFragment();
} else if (menuItemId == R.id.nav_result) {
if (getCurrentFragment() instanceof ResultFragment) {
return false;
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading