Skip to content

Commit da033dc

Browse files
committed
Update Parse SDK dependencies to 1.12.0
* Update other dependencies * Also clean some warnings
1 parent 474808f commit da033dc

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

ParseUI-Login/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121

2222
import com.android.builder.core.BuilderConstants
2323

24-
apply plugin: 'android-library'
24+
apply plugin: 'com.android.library'
2525

2626
version = "0.0.1"
2727
group = 'com.parse'
2828

2929
dependencies {
30-
compile 'com.android.support:support-v4:23.0.1'
31-
compile 'com.parse:parse-android:1.10.3'
30+
compile rootProject.ext.androidSupport
31+
compile rootProject.ext.parse
3232

33-
provided 'com.facebook.android:facebook-android-sdk:4.4.0'
34-
provided 'com.parse:parsefacebookutils-v4-android:1.10.3@aar'
35-
provided 'com.parse:parsetwitterutils-android:1.10.3'
33+
provided rootProject.ext.facebookSDK
34+
provided rootProject.ext.parseFacebookUtils
35+
provided rootProject.ext.parseTwitterUtils
3636
}
3737

3838
android {

ParseUI-Widget/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ version = "0.0.1"
2626
group = 'com.parse'
2727

2828
dependencies {
29-
compile 'com.parse:parse-android:1.10.3'
29+
compile rootProject.ext.parse
3030

3131
androidTestCompile 'com.crittercism.dexmaker:dexmaker:1.4'
3232
androidTestCompile 'com.crittercism.dexmaker:dexmaker-mockito:1.4'

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ ext {
2121
minSdkVersion = 15
2222
targetSdkVersion = 23
2323

24-
facebookSDK = 'com.facebook.android:facebook-android-sdk:4.6.0'
25-
androidSupport = 'com.android.support:support-v4:23.0.1'
26-
bolts = 'com.parse.bolts:bolts-android:1.2.1'
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'
24+
androidSupport = 'com.android.support:support-v4:23.1.1'
25+
26+
parse = 'com.parse:parse-android:1.12.0'
27+
facebookSDK = 'com.facebook.android:facebook-android-sdk:4.9.0'
28+
parseFacebookUtils = 'com.parse:parsefacebookutils-v4-android:1.10.4@aar'
29+
parseTwitterUtils = 'com.parse:parsetwitterutils-android:1.10.4'
3030
}

0 commit comments

Comments
 (0)