Skip to content

Commit

Permalink
Update minimum Flutter version to 3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanheise committed May 15, 2023
1 parent 10e95d3 commit ffe9b88
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 29 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 0.1.14

* Update minimum flutter version to 3.0.

## 0.1.13

* Fix compile error with older rxdart 0.26.*
* Fix compile error with older rxdart 0.26.*.

## 0.1.12

Expand Down
4 changes: 2 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,14 @@ class _MyAppState extends State<MyApp> {
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text("Input devices",
style: Theme.of(context).textTheme.headline6),
style: Theme.of(context).textTheme.titleLarge),
for (var device
in devices.where((device) => device.isInput))
Text(
'${device.name} (${describeEnum(device.type)})'),
SizedBox(height: 16),
Text("Output devices",
style: Theme.of(context).textTheme.headline6),
style: Theme.of(context).textTheme.titleLarge),
for (var device
in devices.where((device) => device.isOutput))
Text(
Expand Down
10 changes: 7 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: audio_session
description: Sets the iOS audio session category and Android audio attributes for your app, and manages your app's audio focus, mixing and ducking behaviour.
version: 0.1.13
version: 0.1.14
homepage: https://github.com/ryanheise/audio_session
topics:
- audio
- AVAudioSession
- AudioManager

environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.12.13+hotfix.5"
sdk: ">=2.14.0 <4.0.0"
flutter: ">=3.0.0"

dependencies:
flutter:
Expand Down
23 changes: 0 additions & 23 deletions test/audio_session_test.dart

This file was deleted.

0 comments on commit ffe9b88

Please sign in to comment.