diff --git a/ParseLoginSampleBasic/build.gradle b/ParseLoginSampleBasic/build.gradle index 1d8f935..35e2e57 100644 --- a/ParseLoginSampleBasic/build.gradle +++ b/ParseLoginSampleBasic/build.gradle @@ -6,8 +6,8 @@ dependencies { compile project(':ParseUI-Login') compile rootProject.ext.androidSupport compile rootProject.ext.parse - compile files(rootProject.ext.parseFacebookUtilsPath) - compile files(rootProject.ext.parseTwitterUtilsPath) + compile rootProject.ext.parseFacebookUtils + compile rootProject.ext.parseTwitterUtils } android { diff --git a/ParseLoginSampleCodeCustomization/build.gradle b/ParseLoginSampleCodeCustomization/build.gradle index 1d8f935..35e2e57 100644 --- a/ParseLoginSampleCodeCustomization/build.gradle +++ b/ParseLoginSampleCodeCustomization/build.gradle @@ -6,8 +6,8 @@ dependencies { compile project(':ParseUI-Login') compile rootProject.ext.androidSupport compile rootProject.ext.parse - compile files(rootProject.ext.parseFacebookUtilsPath) - compile files(rootProject.ext.parseTwitterUtilsPath) + compile rootProject.ext.parseFacebookUtils + compile rootProject.ext.parseTwitterUtils } android { diff --git a/ParseLoginSampleLayoutOverride/build.gradle b/ParseLoginSampleLayoutOverride/build.gradle index 1d8f935..35e2e57 100644 --- a/ParseLoginSampleLayoutOverride/build.gradle +++ b/ParseLoginSampleLayoutOverride/build.gradle @@ -6,8 +6,8 @@ dependencies { compile project(':ParseUI-Login') compile rootProject.ext.androidSupport compile rootProject.ext.parse - compile files(rootProject.ext.parseFacebookUtilsPath) - compile files(rootProject.ext.parseTwitterUtilsPath) + compile rootProject.ext.parseFacebookUtils + compile rootProject.ext.parseTwitterUtils } android { diff --git a/ParseLoginSampleWithDispatchActivity/build.gradle b/ParseLoginSampleWithDispatchActivity/build.gradle index 1d8f935..35e2e57 100644 --- a/ParseLoginSampleWithDispatchActivity/build.gradle +++ b/ParseLoginSampleWithDispatchActivity/build.gradle @@ -6,8 +6,8 @@ dependencies { compile project(':ParseUI-Login') compile rootProject.ext.androidSupport compile rootProject.ext.parse - compile files(rootProject.ext.parseFacebookUtilsPath) - compile files(rootProject.ext.parseTwitterUtilsPath) + compile rootProject.ext.parseFacebookUtils + compile rootProject.ext.parseTwitterUtils } android { diff --git a/ParseUI-Login/build.gradle b/ParseUI-Login/build.gradle index 15de9d0..b577543 100644 --- a/ParseUI-Login/build.gradle +++ b/ParseUI-Login/build.gradle @@ -22,12 +22,12 @@ apply plugin: 'android-library' dependencies { - compile 'com.android.support:support-v4:22.0.0' - compile 'com.parse:parse-android:1.10.1' + compile 'com.android.support:support-v4:23.0.1' + compile 'com.parse:parse-android:1.10.3' - provided 'com.facebook.android:facebook-android-sdk:4.0.1' - provided files("$rootProject.projectDir/ParseUI-Login/libs/ParseFacebookUtilsV4-1.10.1.jar") - provided files("$rootProject.projectDir/ParseUI-Login/libs/ParseTwitterUtils-1.10.1.jar") + provided 'com.facebook.android:facebook-android-sdk:4.4.0' + provided 'com.parse:parsefacebookutils-v4-android:1.10.3@aar' + provided 'com.parse:parsetwitterutils-android:1.10.3' } android { diff --git a/ParseUI-Login/libs/ParseFacebookUtilsV4-1.10.1.jar b/ParseUI-Login/libs/ParseFacebookUtilsV4-1.10.1.jar deleted file mode 100644 index 51730e3..0000000 Binary files a/ParseUI-Login/libs/ParseFacebookUtilsV4-1.10.1.jar and /dev/null differ diff --git a/ParseUI-Login/libs/ParseTwitterUtils-1.10.1.jar b/ParseUI-Login/libs/ParseTwitterUtils-1.10.1.jar deleted file mode 100644 index d643d8c..0000000 Binary files a/ParseUI-Login/libs/ParseTwitterUtils-1.10.1.jar and /dev/null differ diff --git a/ParseUI-Widget/build.gradle b/ParseUI-Widget/build.gradle index 43a06e1..e5100c9 100644 --- a/ParseUI-Widget/build.gradle +++ b/ParseUI-Widget/build.gradle @@ -21,7 +21,7 @@ apply plugin: 'com.android.library' dependencies { - compile 'com.parse:parse-android:1.10.1' + compile 'com.parse:parse-android:1.10.3' androidTestCompile 'com.google.dexmaker:dexmaker:1.2' androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2' diff --git a/README.md b/README.md index 246eb95..42310dc 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,8 @@ The `ParseUI-Widget` library provides several useful UI widgets which integrate compile project(':ParseUI-Widget') // Uncomment if using Facebook Login (optional Maven dependency) - // compile 'com.facebook.android:facebook-android-sdk:4.0.1' - // compile files('YOUR_PROJECT_LIBS_PATH/ParseFacebookUtilsV4-1.10.0.jar') + // compile 'com.facebook.android:facebook-android-sdk:4.6.0' + // compile 'com.parse:parsefacebookutils-v4-android:1.10.3@aar' ``` ## Usage diff --git a/build.gradle b/build.gradle index 7dfd35d..bdfda6a 100644 --- a/build.gradle +++ b/build.gradle @@ -18,13 +18,13 @@ ext { compileSdkVersion = 21 buildToolsVersion = "21.1.1" - minSdkVersion = 9 + minSdkVersion = 15 targetSdkVersion = 21 - facebookSDK = 'com.facebook.android:facebook-android-sdk:4.0.1' - androidSupport = 'com.android.support:support-v4:22.0.0' + facebookSDK = 'com.facebook.android:facebook-android-sdk:4.6.0' + androidSupport = 'com.android.support:support-v4:23.0.1' bolts = 'com.parse.bolts:bolts-android:1.2.1' - parse = 'com.parse:parse-android:1.10.1' - parseFacebookUtilsPath = "$rootProject.projectDir/ParseUI-Login/libs/ParseFacebookUtilsV4-1.10.1.jar" - parseTwitterUtilsPath = "$rootProject.projectDir/ParseUI-Login/libs/ParseTwitterUtils-1.10.1.jar" + parse = 'com.parse:parse-android:1.10.3' + parseFacebookUtils = 'com.parse:parsefacebookutils-v4-android:1.10.3@aar' + parseTwitterUtils = 'com.parse:parsetwitterutils-android:1.10.3' }