Skip to content

Commit 270ce91

Browse files
authored
Fix compilation issue in FCM module (#454)
* Fix FCM compilation issue * Bump compile sdk to match Rondo
1 parent 71a5ca2 commit 270ce91

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

AndroidSDKFcm/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies {
3535
releaseApi project(':AndroidSDKPush')
3636

3737
// Provided dependencies are optional dependencies and will not show up in pom file.
38-
compileOnly('com.google.firebase:firebase-messaging:[17.3.4,)') {
38+
compileOnly('com.google.firebase:firebase-messaging:[17.3.4, 21.1.0]') {
3939
exclude module: 'support-v4'
4040
}
4141
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
jcenter()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.6.3'
9+
classpath 'com.android.tools.build:gradle:4.2.0'
1010
}
1111
}
1212

common-methods.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Export methods by turning them into closures
22
ext {
3-
COMPILE_SDK_VERSION = 29
3+
COMPILE_SDK_VERSION = 30
44
APPCOMPAT_LIBRARY_VERSION = '1.2.0'
55
MIN_SDK_VERSION = 14
66
JAVA_VERSION = JavaVersion.VERSION_1_8
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)