Last active
March 23, 2018 23:26
-
-
Save adrianhall/b58c1b9ec6d29401dc845a06ae6e3942 to your computer and use it in GitHub Desktop.
Libraries for authentication
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
// Prerequisite libraries - use the right ones for your API level | |
implementation 'com.android.support:support-v4:24.+' | |
implementation 'com.android.support:appcompat-v7:24.+' | |
// AWS Mobile SDK for Android | |
implementation('com.amazonaws:aws-android-sdk-mobile-client:2.6.+@aar') { transitive = true } | |
implementation('com.amazonaws:aws-android-sdk-auth-userpools:2.6.+@aar') { transitive = true } | |
implementation('com.amazonaws:aws-android-sdk-auth-ui:2.6.+@aar') { transitive = true } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment