Skip to content

Commit

Permalink
chore: support flutter 3.3.0 (#1262)
Browse files Browse the repository at this point in the history
fix linting

switch to stable channel for web

Also necessary to fix CI, which fails on flutter analyze.
  • Loading branch information
Gustl22 authored Sep 1, 2022
1 parent 6fad1cc commit 05cd01e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- uses: subosito/flutter-action@v2
with:
channel: master
channel: stable
- uses: bluefireteam/melos-action@main

- name: Example App - Build web app
Expand Down
2 changes: 2 additions & 0 deletions packages/audioplayers/lib/src/audio_cache.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import 'dart:async';
import 'dart:io';
// TODO(gustl22): remove when upgrading min Flutter version to >=3.3.0
// ignore: unnecessary_import
import 'dart:typed_data';

import 'package:flutter/foundation.dart';
Expand Down
2 changes: 2 additions & 0 deletions packages/audioplayers/lib/src/audioplayer.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import 'dart:async';
// TODO(gustl22): remove when upgrading min Flutter version to >=3.3.0
// ignore: unnecessary_import
import 'dart:typed_data';

import 'package:audioplayers/audioplayers.dart';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import 'dart:async';
// TODO(gustl22): remove when upgrading min Flutter version to >=3.3.0
// ignore: unnecessary_import
import 'dart:typed_data';

import 'package:audioplayers_platform_interface/api/audio_context_config.dart';
Expand Down

0 comments on commit 05cd01e

Please sign in to comment.