Auth0 is an authentication broker that supports social identity providers as well as enterprise identity providers such as Active Directory, LDAP, Google Apps and Salesforce.
- Integrates your Android app with Auth0.
- Provides a beautiful native UI to log your users in.
- Provides support for Social Providers (Facebook, Twitter, etc.), Enterprise Providers (AD, LDAP, etc.) and Username & Password.
- Passwordless authentication using SMS and Email.
Android API Level 15+ is required in order to use Lock's UI.
##Install
Lock is available both in Maven Central and JCenter. To start using Lock add these lines to your build.gradle
dependencies file:
compile 'com.auth0.android:lock:2.1.0'
First go to Auth0 Dashboard and go to your application's settings. Make sure you have in Allowed Callback URLs a URL with the following format:
https://{YOUR_AUTH0_DOMAIN}/android/{YOUR_APP_PACKAGE_NAME}/callback
You'll need to configure LockActivity
in your AndroidManifest.xml
, inside the application
tag:
<activity
android:name="com.auth0.android.lock.LockActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/Lock.Theme">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="{YOUR_AUTH0_DOMAIN}"
android:pathPrefix="/android/{YOUR_APP_PACKAGE_NAME}/callback"
android:scheme="https" />
</intent-filter>
</activity>
Make sure the Activity's launchMode
is declared as "singleTask"
or the result won't come back in the authentication.
Also, you'll need to add Internet permission to your application:
<uses-permission android:name="android.permission.INTERNET" />
Then in any of your Activities you need to initialize Lock:
// This activity will show Lock
public class HomeActivity extends Activity {
private Lock lock;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Your own Activity code
Auth0 auth0 = new Auth0("YOUR_AUTH0_CLIENT_ID", "YOUR_AUTH0_DOMAIN");
lock = Lock.newBuilder(auth0, callback)
//Customize Lock
.build(this);
}
@Override
protected void onDestroy() {
super.onDestroy();
// Your own Activity code
lock.onDestroy(this);
lock = null;
}
private LockCallback callback = new AuthenticationCallback() {
@Override
public void onAuthentication(Credentials credentials) {
//Authenticated
}
@Override
public void onCanceled() {
//User pressed back
}
@Override
public void onError(LockException error) {
//Exception occurred
}
};
}
Then just start LockActivity
from inside your Activity
.
startActivity(lock.newIntent(this));
PasswordlessLockActivity
authenticates users by sending them an Email or SMS (similar to how WhatsApp authenticates you). In order to be able to authenticate the user, your application must have the SMS/Email connection enabled and configured in your dashboard.
You'll need to configure PasswordlessLockActivity in your AndroidManifest.xml
, inside the application
tag:
<activity
android:name="com.auth0.android.lock.PasswordlessLockActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/Lock.Theme">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="{YOUR_AUTH0_DOMAIN}"
android:pathPrefix="/android/{YOUR_APP_PACKAGE_NAME}/callback"
android:scheme="https" />
</intent-filter>
</activity>
Make sure the Activity's launchMode
is declared as "singleTask"
or the result won't come back after the authentication.
Also, you'll need to add Internet permission to your application:
<uses-permission android:name="android.permission.INTERNET" />
Then in any of your Activities you need to initialize PasswordlessLock
// This activity will show Lock
public class HomeActivity extends Activity {
private PasswordlessLock lock;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Your own Activity code
Auth0 auth0 = new Auth0("YOUR_AUTH0_CLIENT_ID", "YOUR_AUTH0_DOMAIN");
lock = PasswordlessLock.newBuilder(auth0, callback)
//Customize Lock
.build(this);
}
@Override
protected void onDestroy() {
super.onDestroy();
// Your own Activity code
lock.onDestroy(this);
lock = null;
}
private LockCallback callback = new AuthenticationCallback() {
@Override
public void onAuthentication(Credentials credentials) {
//Authenticated
}
@Override
public void onCanceled() {
//User pressed back
}
@Override
public void onError(LockException error) {
//Exception occurred
}
};
}
Then just start PasswordlessLockActivity
from inside your Activity
startActivity(lock.newIntent(this));
##Proguard In the proguard directory you can find the Proguard configuration for Lock and its dependencies. By default you should at least use the following files:
proguard-okio.pro
proguard-gson.pro
proguard-otto.pro
proguard-lock-2.pro
As this library depends on Auth0.Android
, you should keep the files up to date with the proguard rules defined in the repository.
Auth0 helps you to:
- Add authentication with multiple authentication sources, either social like Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, among others, or enterprise identity systems like Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider.
- Add authentication through more traditional username/password databases.
- Add support for linking different user accounts with the same user.
- Support for generating signed Json Web Tokens to call your APIs and flow the user identity securely.
- Analytics of how, when and where users are logging in.
- Pull data from other sources and add it to the user profile, through JavaScript rules.
- Go to Auth0 and click Sign Up.
- Use Google, GitHub or Microsoft Account to login.
If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
This project is licensed under the MIT license. See the LICENSE file for more info.