Skip to content

Updates and remove gcm module #1090

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions bolts-tasks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
// LICENSE file in the root directory of this source tree.

apply plugin: 'java'
apply plugin: 'maven'

configurations {
provided
Expand All @@ -18,7 +17,7 @@ sourceSets {

dependencies {
provided 'com.google.android:android:4.1.1.4'
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13.2'
}


Expand Down
11 changes: 5 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
buildscript {
ext.kotlin_version = "1.4.10"
ext.kotlin_version = "1.4.32"
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:3.6.2"
classpath "com.android.tools.build:gradle:4.1.3"
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.3"
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

plugins {
id "com.github.ben-manes.versions" version "0.28.0"
id "com.github.ben-manes.versions" version "0.38.0"
}

allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}

Expand Down
4 changes: 1 addition & 3 deletions coroutines/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
}

ext {
coroutinesVersion = "1.3.9"
coroutinesVersion = "1.4.3"
}

dependencies {
Expand All @@ -38,5 +38,3 @@ dependencies {
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
implementation project(":parse")
}

apply from: "https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle"
6 changes: 2 additions & 4 deletions facebook/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@ android {
}

dependencies {
api "com.facebook.android:facebook-login:6.3.0"
api "com.facebook.android:facebook-login:9.1.0"
implementation project(":parse")

testImplementation "junit:junit:4.13"
testImplementation "junit:junit:4.13.2"
testImplementation "org.mockito:mockito-core:1.10.19"
testImplementation "org.robolectric:robolectric:3.8"
}

apply from: "https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle"
4 changes: 1 addition & 3 deletions fcm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ android {
}

dependencies {
api "com.google.firebase:firebase-messaging:20.1.5"
api "com.google.firebase:firebase-messaging:21.1.0"
implementation project(":parse")
}

apply from: "https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle"
2 changes: 1 addition & 1 deletion fcm/src/main/java/com/parse/fcm/ParseFCM.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ParseFCM {

static final String TAG = "ParseFCM";

private static final String PUSH_TYPE = "gcm"; // Backwards compatability with Parse servers
private static final String PUSH_TYPE = "gcm"; // Backwards compatibility with Parse servers

/**
* You can call this manually if you are overriding the {@link com.google.firebase.messaging.FirebaseMessagingService}
Expand Down
1 change: 0 additions & 1 deletion gcm/.gitignore

This file was deleted.

85 changes: 0 additions & 85 deletions gcm/README.md

This file was deleted.

40 changes: 0 additions & 40 deletions gcm/build.gradle

This file was deleted.

21 changes: 0 additions & 21 deletions gcm/proguard-rules.pro

This file was deleted.

18 changes: 0 additions & 18 deletions gcm/src/main/AndroidManifest.xml

This file was deleted.

97 changes: 0 additions & 97 deletions gcm/src/main/java/com/parse/gcm/ParseGCM.java

This file was deleted.

This file was deleted.

Loading