Skip to content

Commit

Permalink
Version 0.17.0-nullsafety.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanheise committed Mar 4, 2021
1 parent 506e6e3 commit 0daa526
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.17.0-nullsafety.0

* Null safety.

## 0.16.2+1

* Mention upcoming 0.18.0 release in README.
Expand Down
4 changes: 2 additions & 2 deletions example/macos/Flutter/GeneratedPluginRegistrant.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
import FlutterMacOS
import Foundation

import audio_service
import audio_session
import just_audio
import path_provider_macos
import sqflite
import audio_service

func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
AudioServicePlugin.register(with: registry.registrar(forPlugin: "AudioServicePlugin"))
AudioSessionPlugin.register(with: registry.registrar(forPlugin: "AudioSessionPlugin"))
JustAudioPlugin.register(with: registry.registrar(forPlugin: "JustAudioPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
AudioServicePlugin.register(with: registry.registrar(forPlugin: "AudioServicePlugin"))
}
6 changes: 3 additions & 3 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ description: Demonstrates how to use the audio_service plugin.
publish_to: 'none'

environment:
sdk: ">=2.12.0-259.9.beta <3.0.0"
sdk: ">=2.12.0 <3.0.0"

dependencies:
flutter:
sdk: flutter

path_provider: ^2.0.0
path_provider: ^2.0.1
audio_session: ^0.1.0
just_audio: ^0.7.0-nullsafety.2
just_audio: ^0.7.0
# TODO: re-enable when flutter_tts is migrated to null safety.
# flutter_tts: ^0.8.5
rxdart: ^0.26.0
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: audio_service
description: Flutter plugin to play audio in the background while the screen is off.
version: 0.16.2+1
version: 0.17.0-nullsafety.0
homepage: https://github.com/ryanheise/audio_service

environment:
sdk: ">=2.12.0-259.9.beta <3.0.0"
sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.12.13+hotfix.5"

dependencies:
audio_session: ^0.1.0
rxdart: ^0.26.0
flutter_isolate: ^2.0.0-nullsafety.0
flutter_cache_manager: ^3.0.0-nullsafety.0
flutter_isolate: ^2.0.0
flutter_cache_manager: ^3.0.0-nullsafety.1
js: ^0.6.3
flutter:
sdk: flutter
Expand Down

0 comments on commit 0daa526

Please sign in to comment.