Skip to content

Commit

Permalink
fix: background service
Browse files Browse the repository at this point in the history
  • Loading branch information
luke358 committed Aug 22, 2024
1 parent d1ca610 commit efffa6a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (flutterVersionName == null) {
}

android {
namespace = "com.luke35.podcasts_pro"
namespace = "com.luke358.podcasts_pro"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion

Expand All @@ -35,7 +35,7 @@ android {

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.luke35.podcasts_pro"
applicationId = "com.luke358.podcasts_pro"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdk = flutter.minSdkVersion
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.luke35.podcasts_pro
package com.luke358.podcasts_pro

import io.flutter.embedding.android.FlutterActivity

Expand Down
2 changes: 1 addition & 1 deletion lib/audio/my_audio_handler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Future<AudioHandler> initAudioService() async {
return await AudioService.init(
builder: () => MyAudioHandler(),
config: const AudioServiceConfig(
androidNotificationChannelId: 'com.luke358.podcasts_pro.audio',
androidNotificationChannelId: 'com.luke358.podcasts_pro',
androidNotificationChannelName: 'Podcasts Pro',
androidNotificationOngoing: true,
androidStopForegroundOnPause: true,
Expand Down
2 changes: 1 addition & 1 deletion linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ project(runner LANGUAGES CXX)
set(BINARY_NAME "podcasts_pro")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.luke35.podcasts_pro")
set(APPLICATION_ID "com.luke358.podcasts_pro")

# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.0.7
version: 1.0.8

environment:
sdk: '>=3.4.3 <4.0.0'
Expand Down

0 comments on commit efffa6a

Please sign in to comment.