Skip to content

Commit

Permalink
remove AuthHandler interface, use the one defined by Auth0.Android
Browse files Browse the repository at this point in the history
  • Loading branch information
lbalmaceda committed Sep 15, 2016
1 parent c61ad83 commit 6366748
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 24 deletions.
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
compile 'com.android.support:design:24.2.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.squareup:otto:1.3.8'
compile 'com.auth0.android:auth0:1.0.0-rc.1'
compile 'com.auth0.android:auth0:1.0.0'
testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest-library:1.3'
testCompile 'org.robolectric:robolectric:3.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/src/main/java/com/auth0/android/lock/Lock.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
import com.auth0.android.lock.LockCallback.LockEvent;
import com.auth0.android.lock.internal.Options;
import com.auth0.android.lock.internal.Theme;
import com.auth0.android.lock.provider.AuthHandler;
import com.auth0.android.lock.provider.AuthResolver;
import com.auth0.android.lock.utils.CustomField;
import com.auth0.android.lock.utils.LockException;
import com.auth0.android.provider.AuthHandler;
import com.auth0.android.util.Telemetry;

import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
import com.auth0.android.lock.LockCallback.LockEvent;
import com.auth0.android.lock.internal.Options;
import com.auth0.android.lock.internal.Theme;
import com.auth0.android.lock.provider.AuthHandler;
import com.auth0.android.lock.provider.AuthResolver;
import com.auth0.android.lock.utils.LockException;
import com.auth0.android.provider.AuthHandler;
import com.auth0.android.util.Telemetry;

import java.util.Arrays;
Expand Down
20 changes: 0 additions & 20 deletions lib/src/main/java/com/auth0/android/lock/provider/AuthHandler.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;

import com.auth0.android.provider.AuthHandler;
import com.auth0.android.provider.AuthProvider;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
public class ThemeTest {

@StringRes
static final int STRING_RES = R.string.com_auth0_lock_permission_missing_title;
static final int STRING_RES = R.string.com_auth0_lock_header_title;
@DrawableRes
static final int DRAWABLE_RES = R.drawable.com_auth0_lock_ic_social_auth0;
@ColorRes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

package com.auth0.android.lock.provider;

import com.auth0.android.provider.AuthHandler;
import com.auth0.android.provider.AuthProvider;

import org.junit.Test;
Expand Down

0 comments on commit 6366748

Please sign in to comment.