Skip to content

Commit 614e469

Browse files
committed
App Update 0.0.3
1 parent 6e4fe6d commit 614e469

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ android {
3030
applicationId "com.mtechviral.fluttermusicplayer"
3131
minSdkVersion 16
3232
targetSdkVersion 27
33-
versionCode 2
34-
versionName "0.0.2"
33+
versionCode 3
34+
versionName "0.0.3"
3535
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
3636
}
3737

lib/my_app.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import 'package:flute_example/data/song_data.dart';
22
import 'package:flute_example/pages/root_page.dart';
33
import 'package:flute_example/widgets/mp_inherited.dart';
4-
import 'package:flutter/material.dart';
54
import 'package:flute_music_player/flute_music_player.dart';
5+
import 'package:flutter/material.dart';
66

77
class MyApp extends StatefulWidget {
88
@override
@@ -43,7 +43,7 @@ class _MyAppState extends State<MyApp> {
4343
if (!mounted) return;
4444

4545
setState(() {
46-
songData = new SongData(new List.from(songs));
46+
songData = new SongData((songs));
4747
_isLoading = false;
4848
});
4949
}

pubspec.lock

+11-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ packages:
2828
name: barback
2929
url: "https://pub.dartlang.org"
3030
source: hosted
31-
version: "0.15.2+15"
31+
version: "0.15.2+14"
3232
boolean_selector:
3333
dependency: transitive
3434
description:
@@ -86,12 +86,12 @@ packages:
8686
source: hosted
8787
version: "0.1.1"
8888
flute_music_player:
89-
dependency: "direct dev"
89+
dependency: "direct main"
9090
description:
9191
name: flute_music_player
9292
url: "https://pub.dartlang.org"
9393
source: hosted
94-
version: "0.0.5"
94+
version: "0.0.6"
9595
flutter:
9696
dependency: "direct main"
9797
description: flutter
@@ -200,6 +200,13 @@ packages:
200200
url: "https://pub.dartlang.org"
201201
source: hosted
202202
version: "0.9.6"
203+
mockito:
204+
dependency: transitive
205+
description:
206+
name: mockito
207+
url: "https://pub.dartlang.org"
208+
source: hosted
209+
version: "2.2.3"
203210
multi_server_socket:
204211
dependency: transitive
205212
description:
@@ -351,7 +358,7 @@ packages:
351358
name: test
352359
url: "https://pub.dartlang.org"
353360
source: hosted
354-
version: "0.12.32+2"
361+
version: "0.12.32+1"
355362
typed_data:
356363
dependency: transitive
357364
description:

pubspec.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ dependencies:
88
# The following adds the Cupertino Icons font to your application.
99
# Use with the CupertinoIcons class for iOS style icons.
1010
cupertino_icons: ^0.1.0
11+
flute_music_player: ^0.0.6
1112

1213
dev_dependencies:
1314
flutter_test:
1415
sdk: flutter
1516

16-
flute_music_player: ^0.0.5
17+
1718

1819
# For information on the generic Dart part of this file, see the
1920
# following page: https://www.dartlang.org/tools/pub/pubspec

0 commit comments

Comments
 (0)