EverTranslator
EverTranslator copied to clipboard
Notification is on
After rebooting device the notification icon is on even though the app isn't on and it's not opened yet
It will work fine after open the app after reboot
Android 9
Thanks for the feedback. I'll check it later!
i founeded this https://stackoverflow.com/questions/50526153/quick-settings-tile-in-active-state-on-boot-when-active-tile-enabled
but once i add
meta-data android:name="android.service.quicksettings.ACTIVE_TILE" android:value="true"
and
TileService.requestListeningState(this, ComponentName(this, QuickTileService::class.java))
off button change to on and on change to off
it might help to fix the problem
Thank you for the survey, I'll check how to fix it.
I found the problem.
The default state of quick tile items is active on Android 9.
And I used a MutableSharedFlow
without assigning a default value, so it can be corrected after any state changes.