Rename project to just_audio
This commit is contained in:
parent
0574c041c5
commit
108821871d
27 changed files with 51 additions and 51 deletions
|
@ -1,6 +1,6 @@
|
|||
# audio_player_example
|
||||
# just_audio_example
|
||||
|
||||
Demonstrates how to use the audio_player plugin.
|
||||
Demonstrates how to use the just_audio plugin.
|
||||
|
||||
## Getting Started
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ android {
|
|||
|
||||
defaultConfig {
|
||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||
applicationId "com.ryanheise.audio_player_example"
|
||||
applicationId "com.ryanheise.just_audio_example"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 28
|
||||
versionCode flutterVersionCode.toInteger()
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.ryanheise.audio_player_example">
|
||||
package="com.ryanheise.just_audio_example">
|
||||
<!-- Flutter needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.ryanheise.audio_player_example">
|
||||
package="com.ryanheise.just_audio_example">
|
||||
|
||||
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
|
||||
calls FlutterMain.startInitialization(this); in its onCreate method.
|
||||
|
@ -8,7 +8,7 @@
|
|||
FlutterApplication and put your custom class here. -->
|
||||
<application
|
||||
android:name="io.flutter.app.FlutterApplication"
|
||||
android:label="audio_player_example"
|
||||
android:label="just_audio_example"
|
||||
android:icon="@mipmap/ic_launcher">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package com.ryanheise.audio_player_example;
|
||||
package com.ryanheise.just_audio_example;
|
||||
|
||||
import android.os.Bundle;
|
||||
import io.flutter.app.FlutterActivity;
|
|
@ -1,5 +1,5 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.ryanheise.audio_player_example">
|
||||
package="com.ryanheise.just_audio_example">
|
||||
<!-- Flutter needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>audio_player_example</string>
|
||||
<string>just_audio_example</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
|
|
|
@ -4,7 +4,7 @@ import 'package:flutter/material.dart';
|
|||
import 'dart:async';
|
||||
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:audio_player/audio_player.dart';
|
||||
import 'package:just_audio/just_audio.dart';
|
||||
|
||||
void main() => runApp(MyApp());
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ packages:
|
|||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.3.0"
|
||||
audio_player:
|
||||
just_audio:
|
||||
dependency: "direct dev"
|
||||
description:
|
||||
path: ".."
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: audio_player_example
|
||||
description: Demonstrates how to use the audio_player plugin.
|
||||
name: just_audio_example
|
||||
description: Demonstrates how to use the just_audio plugin.
|
||||
publish_to: 'none'
|
||||
|
||||
dependencies:
|
||||
|
@ -14,7 +14,7 @@ dev_dependencies:
|
|||
flutter_test:
|
||||
sdk: flutter
|
||||
|
||||
audio_player:
|
||||
just_audio:
|
||||
path: ../
|
||||
|
||||
# For information on the generic Dart part of this file, see the
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
import 'package:audio_player_example/main.dart';
|
||||
import 'package:just_audio_example/main.dart';
|
||||
|
||||
void main() {
|
||||
testWidgets('Verify Platform version', (WidgetTester tester) async {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue