Skip to content

Commit ee30762

Browse files
committed
Merge pull request #48 from ParsePlatform/update_parse_sdk_to_1.9.4
Update to Parse SDK 1.9.4
2 parents 65029af + 64ee44b commit ee30762

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

ParseLoginUI/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ dependencies {
88
// This assumes that your app's project has a compile dependency on the Parse SDK JAR files.
99
// Your project's build.gradle should say:
1010
//
11-
// compile files('YOUR_PROJECT_LIBS_PATH/Parse-1.9.1.jar')
12-
// compile files('YOUR_PROJECT_LIBS_PATH/ParseFacebookUtilsV4-1.9.1.jar')
11+
// compile files('YOUR_PROJECT_LIBS_PATH/Parse-1.9.4.jar')
12+
// compile files('YOUR_PROJECT_LIBS_PATH/ParseFacebookUtilsV4-1.9.4.jar')
1313
//
1414
// Since the dependency below is "provided" instead of "compile", your project's build.gradle
1515
// does not have to refer to the same Parse SDK instance that's in the ParseLoginUI/libs folder.
16-
provided files("$rootProject.projectDir/ParseLoginUI/libs/Parse-1.9.1.jar")
17-
provided files("$rootProject.projectDir/ParseLoginUI/libs/ParseFacebookUtilsV4-1.9.1.jar")
16+
provided files("$rootProject.projectDir/ParseLoginUI/libs/Parse-1.9.4.jar")
17+
provided files("$rootProject.projectDir/ParseLoginUI/libs/ParseFacebookUtilsV4-1.9.4.jar")
1818
}
1919

2020
android {

ParseLoginUI/libs/Parse-1.9.1.jar

-878 KB
Binary file not shown.

ParseLoginUI/libs/Parse-1.9.4.jar

906 KB
Binary file not shown.
-8.27 KB
Binary file not shown.
8.08 KB
Binary file not shown.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ To run our sample apps, you need to import this repo as a standalone Gradle proj
3939

4040
// If your app's project does not have the Parse Android SDK already, copy it into your
4141
// project at YOUR_PROJECT_LIBS_PATH.
42-
compile files('YOUR_PROJECT_LIBS_PATH/Parse-1.9.1.jar')
43-
compile files('YOUR_PROJECT_LIBS_PATH/ParseFacebookUtilsV4-1.9.1.jar')
42+
compile files('YOUR_PROJECT_LIBS_PATH/Parse-1.9.4.jar')
43+
compile files('YOUR_PROJECT_LIBS_PATH/ParseFacebookUtilsV4-1.9.4.jar')
4444

4545
// Uncomment if using Facebook Login (optional Maven dependency)
4646
// compile 'com.facebook.android:facebook-android-sdk:4.0.1'

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ ext {
2424
facebookSDK = 'com.facebook.android:facebook-android-sdk:4.0.1'
2525
androidSupport = 'com.android.support:support-v4:22.0.0'
2626
bolts = 'com.parse.bolts:bolts-android:1.2.0'
27-
parsePath = "$rootProject.projectDir/ParseLoginUI/libs/Parse-1.9.1.jar"
28-
parseFacebookUtilsPath = "$rootProject.projectDir/ParseLoginUI/libs/ParseFacebookUtilsV4-1.9.1.jar"
27+
parsePath = "$rootProject.projectDir/ParseLoginUI/libs/Parse-1.9.4.jar"
28+
parseFacebookUtilsPath = "$rootProject.projectDir/ParseLoginUI/libs/ParseFacebookUtilsV4-1.9.4.jar"
2929
}

0 commit comments

Comments
 (0)