Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Upscale versioning #782

Merged
merged 3 commits into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
14 changes: 8 additions & 6 deletions assets_audio_player_web/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ group 'com.github.florent37.assets_audio_player_web'
version '1.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '1.6.10'
ext.kotlin_version = '1.7.10'
repositories {
google()
jcenter()
mavenCentral()
}

dependencies {
Expand All @@ -17,12 +17,14 @@ buildscript {
rootProject.allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
//apply plugin: 'com.android.application'
//apply plugin: 'kotlin-android'
//apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
Comment on lines +25 to +27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why add commented lines?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

they are removed.


android {
compileSdkVersion 28
Expand All @@ -39,6 +41,6 @@ android {
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.annotation:annotation:1.5.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "androidx.annotation:annotation:1.5.0"
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("EmptyMethod", "EmptyMethod", "EmptyMethod", "EmptyMethod")

package com.github.florent37.assets_audio_player_web

import androidx.annotation.NonNull;
Expand All @@ -14,7 +16,7 @@ public class AssetsAudioPlayerWebPlugin: FlutterPlugin, MethodCallHandler {

private lateinit var channel : MethodChannel

override fun onAttachedToEngine(@NonNull flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
//no-op for compatibility
}

Expand All @@ -25,11 +27,11 @@ public class AssetsAudioPlayerWebPlugin: FlutterPlugin, MethodCallHandler {
}
}

override fun onMethodCall(@NonNull call: MethodCall, @NonNull result: Result) {
override fun onMethodCall(call: MethodCall, result: Result) {
//no-op for compatibility
}

override fun onDetachedFromEngine(@NonNull binding: FlutterPlugin.FlutterPluginBinding) {
override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) {
//no-op for compatibility
}
}
3 changes: 1 addition & 2 deletions example/lib/main_audio_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,8 @@ class _MyPageWithAudioState extends State<MyPageWithAudio> {
padding: const EdgeInsets.all(8.0),
child: ElevatedButton(
style: ElevatedButton.styleFrom(
shape: CircleBorder(),
shape: CircleBorder(), backgroundColor: Theme.of(context).primaryColor,
padding: EdgeInsets.all(14),
primary: Theme.of(context).primaryColor,
),
onPressed: () {
setState(() {
Expand Down
2 changes: 1 addition & 1 deletion example/lib/main_local_file.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class _MyHomePageState extends State<MyHomePage> {
Icons.file_download,
color: Colors.white,
),
style: ElevatedButton.styleFrom(primary: Colors.green),
style: ElevatedButton.styleFrom(backgroundColor: Colors.green),
label: Text(
'Dowload',
style: TextStyle(color: Colors.white),
Expand Down
6 changes: 3 additions & 3 deletions example/lib/main_record.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class RecorderExampleState extends State<RecorderExample> {
}
},
style: TextButton.styleFrom(
primary: Colors.lightBlue,
foregroundColor: Colors.lightBlue,
),
child: _buildText(_currentStatus),
),
Expand All @@ -102,7 +102,7 @@ class RecorderExampleState extends State<RecorderExample> {
onPressed:
_currentStatus != RecordingStatus.Unset ? _stop : null,
style: TextButton.styleFrom(
primary: Colors.blueAccent.withOpacity(0.5),
foregroundColor: Colors.blueAccent.withOpacity(0.5),
),
child: Text('Stop', style: TextStyle(color: Colors.white)),
),
Expand All @@ -112,7 +112,7 @@ class RecorderExampleState extends State<RecorderExample> {
TextButton(
onPressed: onPlayAudio,
style: TextButton.styleFrom(
primary: Colors.blueAccent.withOpacity(0.5),
foregroundColor: Colors.blueAccent.withOpacity(0.5),
),
child: Text('Play', style: TextStyle(color: Colors.white)),
),
Expand Down
8 changes: 4 additions & 4 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: "none"
version: 3.0.0

environment:
sdk: ">=2.12.0 <3.0.0"
sdk: ">=2.19.0 <3.0.0"
flutter: ">=2.0.0"

dependencies:
Expand All @@ -13,9 +13,9 @@ dependencies:
flutter_neumorphic: ^3.2.0
rxdart: ^0.27.0
# for local file test
dio: ^4.0.0-beta7
dio: ^5.2.1+1
path_provider: ^2.0.1
http: ^0.13.0
http: ^1.1.0
provider: ^6.0.0
file: ^6.1.0
#flutter_html: ^2.2.1
Expand All @@ -35,7 +35,7 @@ dependencies:
dev_dependencies:
flutter_test:
sdk: flutter
build_web_compilers: ">=2.0.0 <3.0.0"
build_web_compilers: ^4.0.4
pedantic: ^1.11.0

# uncomment to use remote repos
Expand Down
3 changes: 1 addition & 2 deletions lib/src/playable.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'dart:convert';
import 'dart:typed_data';

import 'package:assets_audio_player/assets_audio_player.dart';
import 'package:flutter/foundation.dart';
Expand Down Expand Up @@ -224,8 +223,8 @@ class Audio extends Playable {
required this.audioType,
this.package,
this.cached,
this.playSpeed,
this.pitch,
this.playSpeed,
Map<String, String>? headers,
Metas? metas,
this.drmConfiguration
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ version: 3.0.6
homepage: https://github.com/florent37/Flutter-AssetsAudioPlayer

environment:
sdk: ">=2.12.0 <3.0.0"
sdk: ">=2.19.0 <3.0.0"
flutter: ">=2.0.0"

dependencies:
flutter:
sdk: flutter
rxdart: ^0.27.3
uuid: ^3.0.5
http: ^0.13.4 # to download / cache network files
http: ^1.1.0 # to download / cache network files
path_provider: ^2.0.8 # removed this because it cancel flutter/android/ios on pub.dev path_provider: ^1.6.10

# The design on https://flutter.dev/go/federated-plugins was to leave
Expand Down