Open BagasNS opened 3 months ago
since this library want to make forever running background tasks, it is not possible to use
android:foregroundServiceType="shortService"
since it will be killed after 3 minutes. refer to this Android Documentation. so we useandroid:foregroundServiceType="dataSync"
instead.This PR will close #228
i am using dataSync but my background task that is simply just a console log iterration is stoping after 30 secs on android 12+ but task is working fine for android below 12 like android x i have tested
since this library want to make forever running background tasks, it is not possible to use
android:foregroundServiceType="shortService"
since it will be killed after 3 minutes. refer to this Android Documentation. so we useandroid:foregroundServiceType="dataSync"
instead.This PR will close #228