Skip to content
Merged
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
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-android/wiki

Version v.Next
----------
- Moved broker controller and strategy classes to common for MSALCPP brokered auth.

Version 1.6.0
-----------
- Introduces new AadAuthorityAudience enum to support new syntax for specifying cloud + audience
Expand Down
2 changes: 1 addition & 1 deletion msal/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@

<!-- Activity to invoke an interactive request to the intent passed by ad-accounts(Broker) -->
<activity
android:name="com.microsoft.identity.client.internal.controllers.BrokerActivity" />
android:name="com.microsoft.identity.common.internal.broker.BrokerActivity" />
</application>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,10 @@
import com.microsoft.identity.client.exception.MsalClientException;
import com.microsoft.identity.client.exception.MsalDeclinedScopeException;
import com.microsoft.identity.client.exception.MsalException;
import com.microsoft.identity.client.exception.MsalServiceException;
import com.microsoft.identity.client.helper.BrokerHelperActivity;
import com.microsoft.identity.client.internal.AsyncResult;
import com.microsoft.identity.client.internal.CommandParametersAdapter;
import com.microsoft.identity.client.internal.controllers.LocalMSALController;
import com.microsoft.identity.common.internal.controllers.LocalMSALController;
import com.microsoft.identity.client.internal.controllers.MSALControllerFactory;
import com.microsoft.identity.client.internal.controllers.MsalExceptionAdapter;
import com.microsoft.identity.common.adal.internal.cache.IStorageHelper;
Expand Down

This file was deleted.

Loading