[go: nahoru, domu]

Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

[google_sign_in] Use implementation rather than api dependencies for plugin third-party dependencies. #2015

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Prefer implementation dependencies over api dependencies
  • Loading branch information
collinjackson committed Aug 26, 2019
commit 577a4753021a663ca08d66f05d79be6109e291aa
5 changes: 5 additions & 0 deletions packages/android_alarm_manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.4.4+1

* Switch from using `api` to `implementation` for dependency on `androidx`,
preventing version mismatch build failures in some Android configurations.

## 0.4.4

* Add `id` to `callback` if it is of type `Function(int)`
Expand Down
2 changes: 1 addition & 1 deletion packages/android_alarm_manager/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ android {

dependencies {
implementation 'androidx.appcompat:appcompat:1.0.0'
api 'androidx.core:core:1.0.1'
implementation 'androidx.core:core:1.0.1'
}
2 changes: 1 addition & 1 deletion packages/android_alarm_manager/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: android_alarm_manager
description: Flutter plugin for accessing the Android AlarmManager service, and
running Dart code in the background when alarms fire.
version: 0.4.4
version: 0.4.4+1
author: Flutter Team <flutter-dev@googlegroups.com>
homepage: https://github.com/flutter/plugins/tree/master/packages/android_alarm_manager

Expand Down
5 changes: 5 additions & 0 deletions packages/local_auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.5.3+1

* Switch from using `api` to `implementation` for dependency on `androidx`,
preventing version mismatch build failures in some Android configurations.

## 0.5.3

* Add face id detection as well by not relying on FingerprintCompat.
Expand Down
6 changes: 3 additions & 3 deletions packages/local_auth/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ android {
}

dependencies {
api "androidx.core:core:1.1.0-beta01"
api "androidx.biometric:biometric:1.0.0-alpha04"
api "androidx.fragment:fragment:1.1.0-alpha06"
implementation "androidx.core:core:1.1.0-beta01"
implementation "androidx.biometric:biometric:1.0.0-alpha04"
implementation "androidx.fragment:fragment:1.1.0-alpha06"
}
2 changes: 1 addition & 1 deletion packages/local_auth/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Flutter plugin for Android and iOS device authentication sensors
such as Fingerprint Reader and Touch ID.
author: Flutter Team <flutter-dev@googlegroups.com>
homepage: https://github.com/flutter/plugins/tree/master/packages/local_auth
version: 0.5.3
version: 0.5.3+1

flutter:
plugin:
Expand Down