Skip to content

Commit dd493f5

Browse files
[path_provider] Remove unused Guava dependency (#6744)
* Remove unused Guava dependency * Metadata * Update Nullable import
1 parent fb0a593 commit dd493f5

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

packages/path_provider/path_provider_android/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.22
2+
3+
* Removes unused Guava dependency.
4+
15
## 2.0.21
26

37
* Updates code for `no_leading_underscores_for_local_identifiers` lint.

packages/path_provider/path_provider_android/android/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,5 @@ android {
5555

5656
dependencies {
5757
implementation 'androidx.annotation:annotation:1.5.0'
58-
implementation 'com.google.guava:guava:28.1-android'
5958
testImplementation 'junit:junit:4.13.2'
6059
}

packages/path_provider/path_provider_android/android/src/main/java/io/flutter/plugins/pathprovider/PathProviderPlugin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import android.os.Build.VERSION_CODES;
1010
import android.util.Log;
1111
import androidx.annotation.NonNull;
12+
import androidx.annotation.Nullable;
1213
import io.flutter.embedding.engine.plugins.FlutterPlugin;
1314
import io.flutter.plugin.common.BinaryMessenger;
1415
import io.flutter.plugin.common.BinaryMessenger.TaskQueue;
@@ -17,7 +18,6 @@
1718
import java.io.File;
1819
import java.util.ArrayList;
1920
import java.util.List;
20-
import javax.annotation.Nullable;
2121

2222
public class PathProviderPlugin implements FlutterPlugin, PathProviderApi {
2323
static final String TAG = "PathProviderPlugin";

packages/path_provider/path_provider_android/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: path_provider_android
22
description: Android implementation of the path_provider plugin.
33
repository: https://github.com/flutter/plugins/tree/main/packages/path_provider/path_provider_android
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+path_provider%22
5-
version: 2.0.21
5+
version: 2.0.22
66

77
environment:
88
sdk: ">=2.14.0 <3.0.0"

0 commit comments

Comments
 (0)