Skip to content

Commit bd5e917

Browse files
committed
Merge pull request #81 from ParsePlatform/wangmengyan.update_libraries
Update Libraries
2 parents d001c3d + 66f241f commit bd5e917

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
lines changed

ParseLoginSampleBasic/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ dependencies {
66
compile project(':ParseUI-Login')
77
compile rootProject.ext.androidSupport
88
compile rootProject.ext.parse
9-
compile files(rootProject.ext.parseFacebookUtilsPath)
10-
compile files(rootProject.ext.parseTwitterUtilsPath)
9+
compile rootProject.ext.parseFacebookUtils
10+
compile rootProject.ext.parseTwitterUtils
1111
}
1212

1313
android {

ParseLoginSampleCodeCustomization/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ dependencies {
66
compile project(':ParseUI-Login')
77
compile rootProject.ext.androidSupport
88
compile rootProject.ext.parse
9-
compile files(rootProject.ext.parseFacebookUtilsPath)
10-
compile files(rootProject.ext.parseTwitterUtilsPath)
9+
compile rootProject.ext.parseFacebookUtils
10+
compile rootProject.ext.parseTwitterUtils
1111
}
1212

1313
android {

ParseLoginSampleLayoutOverride/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ dependencies {
66
compile project(':ParseUI-Login')
77
compile rootProject.ext.androidSupport
88
compile rootProject.ext.parse
9-
compile files(rootProject.ext.parseFacebookUtilsPath)
10-
compile files(rootProject.ext.parseTwitterUtilsPath)
9+
compile rootProject.ext.parseFacebookUtils
10+
compile rootProject.ext.parseTwitterUtils
1111
}
1212

1313
android {

ParseLoginSampleWithDispatchActivity/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ dependencies {
66
compile project(':ParseUI-Login')
77
compile rootProject.ext.androidSupport
88
compile rootProject.ext.parse
9-
compile files(rootProject.ext.parseFacebookUtilsPath)
10-
compile files(rootProject.ext.parseTwitterUtilsPath)
9+
compile rootProject.ext.parseFacebookUtils
10+
compile rootProject.ext.parseTwitterUtils
1111
}
1212

1313
android {

ParseUI-Login/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
apply plugin: 'android-library'
2323

2424
dependencies {
25-
compile 'com.android.support:support-v4:22.0.0'
26-
compile 'com.parse:parse-android:1.10.1'
25+
compile 'com.android.support:support-v4:23.0.1'
26+
compile 'com.parse:parse-android:1.10.3'
2727

28-
provided 'com.facebook.android:facebook-android-sdk:4.0.1'
29-
provided files("$rootProject.projectDir/ParseUI-Login/libs/ParseFacebookUtilsV4-1.10.1.jar")
30-
provided files("$rootProject.projectDir/ParseUI-Login/libs/ParseTwitterUtils-1.10.1.jar")
28+
provided 'com.facebook.android:facebook-android-sdk:4.4.0'
29+
provided 'com.parse:parsefacebookutils-v4-android:1.10.3@aar'
30+
provided 'com.parse:parsetwitterutils-android:1.10.3'
3131
}
3232

3333
android {
Binary file not shown.
-67.2 KB
Binary file not shown.

ParseUI-Widget/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
apply plugin: 'com.android.library'
2222

2323
dependencies {
24-
compile 'com.parse:parse-android:1.10.1'
24+
compile 'com.parse:parse-android:1.10.3'
2525

2626
androidTestCompile 'com.google.dexmaker:dexmaker:1.2'
2727
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ The `ParseUI-Widget` library provides several useful UI widgets which integrate
2121
compile project(':ParseUI-Widget')
2222
2323
// Uncomment if using Facebook Login (optional Maven dependency)
24-
// compile 'com.facebook.android:facebook-android-sdk:4.0.1'
25-
// compile files('YOUR_PROJECT_LIBS_PATH/ParseFacebookUtilsV4-1.10.0.jar')
24+
// compile 'com.facebook.android:facebook-android-sdk:4.6.0'
25+
// compile 'com.parse:parsefacebookutils-v4-android:1.10.3@aar'
2626
```
2727
2828
## Usage

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ ext {
1818
compileSdkVersion = 21
1919
buildToolsVersion = "21.1.1"
2020

21-
minSdkVersion = 9
21+
minSdkVersion = 15
2222
targetSdkVersion = 21
2323

24-
facebookSDK = 'com.facebook.android:facebook-android-sdk:4.0.1'
25-
androidSupport = 'com.android.support:support-v4:22.0.0'
24+
facebookSDK = 'com.facebook.android:facebook-android-sdk:4.6.0'
25+
androidSupport = 'com.android.support:support-v4:23.0.1'
2626
bolts = 'com.parse.bolts:bolts-android:1.2.1'
27-
parse = 'com.parse:parse-android:1.10.1'
28-
parseFacebookUtilsPath = "$rootProject.projectDir/ParseUI-Login/libs/ParseFacebookUtilsV4-1.10.1.jar"
29-
parseTwitterUtilsPath = "$rootProject.projectDir/ParseUI-Login/libs/ParseTwitterUtils-1.10.1.jar"
27+
parse = 'com.parse:parse-android:1.10.3'
28+
parseFacebookUtils = 'com.parse:parsefacebookutils-v4-android:1.10.3@aar'
29+
parseTwitterUtils = 'com.parse:parsetwitterutils-android:1.10.3'
3030
}

0 commit comments

Comments
 (0)