From efec5e27dae7223664213b787ebe9b0075e896ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Berkay=20=C3=87AYLI?= <58946126+berkayismus@users.noreply.github.com> Date: Wed, 28 Sep 2022 17:52:59 +0300 Subject: [PATCH] Update build.gradle compile, provided and apk in gradle dependencies prefix command are now deprecated. Use implementation or api instead of compile, compileOnly instead of provided, and runtimeOnly instead of apk I am using Flutter version 3.3.2, i got an error because of that, thanks --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 2958dd5..2590012 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -42,5 +42,5 @@ android { } dependencies{ - compile fileTree(dir: 'libs', include: ['*.jar']) + implementation fileTree(dir: 'libs', include: ['*.jar']) }