From 6117e71ed36d0a6a12c14303618c76f84c1015d7 Mon Sep 17 00:00:00 2001 From: Simon-TechForm <73996878+Simon-TechForm@users.noreply.github.com> Date: Tue, 1 Mar 2022 22:01:52 +0100 Subject: [PATCH] fix(pushnotification): deprecated build.gradle (#9607) --- packages/pushnotification/android/build.gradle | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/packages/pushnotification/android/build.gradle b/packages/pushnotification/android/build.gradle index 18785c02308..0b6a323c78c 100644 --- a/packages/pushnotification/android/build.gradle +++ b/packages/pushnotification/android/build.gradle @@ -48,10 +48,9 @@ android { } dependencies { - compile fileTree(dir: "libs", include: ["*.jar"]) - compile "com.android.support:appcompat-v7:23.0.1" - compile "com.facebook.react:react-native:+" // From node_modules - compile 'com.google.firebase:firebase-messaging:23.0.0' - compile 'com.google.firebase:firebase-core:20.0.0' - compile 'com.firebase:firebase-jobdispatcher:0.6.0' + implementation fileTree(dir: "libs", include: ["*.jar"]) + implementation "com.android.support:appcompat-v7:23.0.1" + implementation "com.facebook.react:react-native:+" // From node_modules + implementation 'com.google.firebase:firebase-messaging:23.0.0' + implementation 'com.google.firebase:firebase-core:20.0.0' }