Skip to content

Commit

Permalink
Merge branch 'dev' into feature/replace_deprecated_packageInfo.signat…
Browse files Browse the repository at this point in the history
…ures
  • Loading branch information
paulkagiri committed Apr 15, 2021
2 parents 4c0f584 + f85c649 commit 885fbb8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ This library, ADAL for Android, will no longer receive new feature improvements.

---

| [Documentation](https://github.com/AzureAD/azure-activedirectory-library-for-android/wiki#documentation) | [Code Samples](https://github.com/azure-samples?utf8=✓&q=active-directory-android) | [Developer Guide](https://aka.ms/aaddev) | [Feedback](https://forms.office.com/r/Xx9tB8g8R4) |
| --- | --- | --- | --- |

# Microsoft Azure Active Directory Authentication Library (ADAL) for Android

ADAL for Android gives you the ability to add support for Work Accounts to your application. This SDK gives your application the full functionality of Microsoft Azure AD, including industry standard protocol support for OAuth2, Web API integration with user level consent, and two-factor authentication support. Best of all, it’s FOSS (Free and Open Source Software) so that you can participate in the development process as we build these libraries.
Expand Down Expand Up @@ -65,6 +68,9 @@ Looking for [Xamarin](https://github.com/AzureADSamples/NativeClient-Xamarin-And

We leverage [Stack Overflow](https://stackoverflow.com/questions/tagged/adal) to work with the community on supporting Azure Active Directory and its SDKs, including this one! We highly recommend you ask your questions on Stack Overflow (we're all on there!) Also browse existing issues to see if someone has had your question before.

## Submit Feedback
We'd like your thoughts on this library. Please complete [this short survey.](https://forms.office.com/r/Xx9tB8g8R4)

## SSO and Conditional Access Support

This library allows your application to support our [Enterprise Mobility Suite](https://www.microsoft.com/en-us/cloud-platform/enterprise-mobility-security), including [Conditional Access](https://www.microsoft.com/en-us/cloud-platform/conditional-access), so businesses can use your application in their secure environment.
Expand Down
4 changes: 2 additions & 2 deletions adal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ allprojects {
password System.getenv("ENV_VSTS_MVN_ANDROIDADAL_ACCESSTOKEN") != null ? System.getenv("ENV_VSTS_MVN_ANDROIDADAL_ACCESSTOKEN") : project.findProperty("vstsMavenAccessToken")
}
}
jcenter()
mavenCentral()
}
}

buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {

repositories {
google()
jcenter()
mavenCentral()
}

dependencies {
Expand All @@ -20,7 +20,7 @@ allprojects {
}
repositories {
google()
jcenter()
mavenCentral()
// Adding here because Travis cannot access AndroidADAL feed.
maven {
url 'https://pkgs.dev.azure.com/MicrosoftDeviceSDK/DuoSDK-Public/_packaging/Duo-SDK-Feed%40Local/maven/v1'
Expand Down
9 changes: 9 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
pluginManagement {
// Note: Since our plugin references the android plugin we need to include google() and mavenCentral() here.
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}

include ':adal', ':userappwithbroker', ':common', 'keyvault', 'labapi', 'testutils'
project(':common').projectDir = new File('common/common')
project(':keyvault').projectDir = new File('common/keyvault')
Expand Down
2 changes: 1 addition & 1 deletion userappwithbroker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ allprojects {
password System.getenv("ENV_VSTS_MVN_ANDROIDADAL_ACCESSTOKEN") != null ? System.getenv("ENV_VSTS_MVN_ANDROIDADAL_ACCESSTOKEN") : project.findProperty("vstsMavenAccessToken")
}
}
jcenter()
mavenCentral()
}
}

Expand Down

0 comments on commit 885fbb8

Please sign in to comment.