We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Android 13, the notification panel is not displayed. And the icon shows a color circle without an application icon. My configuration:
const options = { taskName: 'GetHealthHistory', taskTitle: 'Дистанционный мониторинг', taskDesc: 'Получение истории измерений', taskIcon: { name: 'ic_launcher_round', type: 'mipmap', }, color: '#ff00ff', linkingURI: 'healthMonitoringMainScreen://monitor', parameters: { delay: 1200000, }, };
Starting background:
await BackgroundService.start(getDataFromWatch, options);
But in the notification panel - the icon is displayed as a colored circle with color '#ff00ff'
The icons are in the folders:
What resolution should the icon be? And in which folder should it be located?
And another problem in android 13 there is no notification panel - it seems like all permissions are enabled
My permission
<uses-permission android:name="android.permission.INTERNET" /> <uses-feature android:name="android.hardware.bluetooth_le" android:required="true" /> <uses-permission android:name="android.permission.BLUETOOTH" tools:remove="android:maxSdkVersion" /> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" tools:remove="android:maxSdkVersion" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" android:maxSdkVersion="28" /> <uses-permission-sdk-23 android:name="android.permission.ACCESS_FINE_LOCATION" android:maxSdkVersion="30" /> <uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation" /> <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <uses-permission android:name="android.permission.WAKE_LOCK" />
The text was updated successfully, but these errors were encountered:
Do you find any solution?
Sorry, something went wrong.
As I understand it, the icon is displayed in some versions of Android. In some it is, in some it is not. In android 14 have
No branches or pull requests
In Android 13, the notification panel is not displayed. And the icon shows a color circle without an application icon.
My configuration:
Starting background:
await BackgroundService.start(getDataFromWatch, options);
But in the notification panel - the icon is displayed as a colored circle with color '#ff00ff'
The icons are in the folders:
What resolution should the icon be? And in which folder should it be located?
And another problem in android 13 there is no notification panel - it seems like all permissions are enabled
My permission
The text was updated successfully, but these errors were encountered: