Skip to content

Commit b1b43c7

Browse files
committed
upgraded flutter packages
1 parent 51538dd commit b1b43c7

File tree

16 files changed

+109
-97
lines changed

16 files changed

+109
-97
lines changed

android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ android {
4141

4242
defaultConfig {
4343
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
44-
applicationId "com.example.music_player"
44+
applicationId "com.example.musico"
4545
// You can update the following values to match your application needs.
4646
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
4747
minSdkVersion 21//flutter.minSdkVersion

android/app/src/debug/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.music_player">
2+
package="com.example.musico">
33
<!-- The INTERNET permission is required for development. Specifically,
44
the Flutter tool needs it to communicate with the running application
55
to allow setting breakpoints, to provide hot reload, etc.

android/app/src/main/AndroidManifest.xml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
xmlns:tools="http://schemas.android.com/tools"
3-
package="com.example.music_player">
3+
package="com.example.musico">
44

55
<uses-permission android:name="android.permission.INTERNET"/>
66
<uses-permission android:name="android.permission.WAKE_LOCK"/>
@@ -31,6 +31,10 @@
3131
android:usesCleartextTraffic="true"
3232
>
3333

34+
<meta-data
35+
android:name="com.google.firebase.messaging.default_notification_icon"
36+
android:resource="@mipmap/launcher_icon" />
37+
3438
<activity
3539
android:name="com.ryanheise.audioservice.AudioServiceActivity"
3640
android:exported="true"

android/app/src/main/kotlin/com/example/music_player/MainActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.music_player
1+
package com.example.musico
22

33
import io.flutter.embedding.android.FlutterActivity
44

android/app/src/profile/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.music_player">
2+
package="com.example.musico">
33
<!-- The INTERNET permission is required for development. Specifically,
44
the Flutter tool needs it to communicate with the running application
55
to allow setting breakpoints, to provide hot reload, etc.

ios/Runner/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleName</key>
16-
<string>music_player</string>
16+
<string>musico</string>
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>

linux/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ project(runner LANGUAGES CXX)
44

55
# The name of the executable created for the application. Change this to change
66
# the on-disk name of your application.
7-
set(BINARY_NAME "music_player")
7+
set(BINARY_NAME "musico")
88
# The unique GTK application identifier for this application. See:
99
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
10-
set(APPLICATION_ID "com.example.music_player")
10+
set(APPLICATION_ID "com.example.musico")
1111

1212
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
1313
# versions of CMake.

linux/my_application.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ static void my_application_activate(GApplication* application) {
4040
if (use_header_bar) {
4141
GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
4242
gtk_widget_show(GTK_WIDGET(header_bar));
43-
gtk_header_bar_set_title(header_bar, "music_player");
43+
gtk_header_bar_set_title(header_bar, "musico");
4444
gtk_header_bar_set_show_close_button(header_bar, TRUE);
4545
gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
4646
} else {
47-
gtk_window_set_title(window, "music_player");
47+
gtk_window_set_title(window, "musico");
4848
}
4949

5050
gtk_window_set_default_size(window, 1280, 720);

macos/Runner.xcodeproj/project.pbxproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
/* Begin PBXFileReference section */
5555
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
5656
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
57-
33CC10ED2044A3C60003C045 /* music_player.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "music_player.app"; sourceTree = BUILT_PRODUCTS_DIR; };
57+
33CC10ED2044A3C60003C045 /* musico.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "musico.app"; sourceTree = BUILT_PRODUCTS_DIR; };
5858
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
5959
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
6060
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
@@ -105,7 +105,7 @@
105105
33CC10EE2044A3C60003C045 /* Products */ = {
106106
isa = PBXGroup;
107107
children = (
108-
33CC10ED2044A3C60003C045 /* music_player.app */,
108+
33CC10ED2044A3C60003C045 /* musico.app */,
109109
);
110110
name = Products;
111111
sourceTree = "<group>";
@@ -172,7 +172,7 @@
172172
);
173173
name = Runner;
174174
productName = Runner;
175-
productReference = 33CC10ED2044A3C60003C045 /* music_player.app */;
175+
productReference = 33CC10ED2044A3C60003C045 /* musico.app */;
176176
productType = "com.apple.product-type.application";
177177
};
178178
/* End PBXNativeTarget section */

macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
1717
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
18-
BuildableName = "music_player.app"
18+
BuildableName = "musico.app"
1919
BlueprintName = "Runner"
2020
ReferencedContainer = "container:Runner.xcodeproj">
2121
</BuildableReference>
@@ -31,7 +31,7 @@
3131
<BuildableReference
3232
BuildableIdentifier = "primary"
3333
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
34-
BuildableName = "music_player.app"
34+
BuildableName = "musico.app"
3535
BlueprintName = "Runner"
3636
ReferencedContainer = "container:Runner.xcodeproj">
3737
</BuildableReference>
@@ -54,7 +54,7 @@
5454
<BuildableReference
5555
BuildableIdentifier = "primary"
5656
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
57-
BuildableName = "music_player.app"
57+
BuildableName = "musico.app"
5858
BlueprintName = "Runner"
5959
ReferencedContainer = "container:Runner.xcodeproj">
6060
</BuildableReference>
@@ -71,7 +71,7 @@
7171
<BuildableReference
7272
BuildableIdentifier = "primary"
7373
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
74-
BuildableName = "music_player.app"
74+
BuildableName = "musico.app"
7575
BlueprintName = "Runner"
7676
ReferencedContainer = "container:Runner.xcodeproj">
7777
</BuildableReference>

macos/Runner/Configs/AppInfo.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// 'flutter create' template.
66

77
// The application's name. By default this is also the title of the Flutter window.
8-
PRODUCT_NAME = music_player
8+
PRODUCT_NAME = musico
99

1010
// The application's bundle identifier
1111
PRODUCT_BUNDLE_IDENTIFIER = com.example.musicPlayer

0 commit comments

Comments
 (0)