Rapsssito / react-native-background-actions

React Native background service library for running background tasks forever in Android & iOS.
MIT License
818 stars 117 forks source link

docs: update installation guide android section #236

Open BagasNS opened 3 months ago

BagasNS commented 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 use android:foregroundServiceType="dataSync" instead.

This PR will close #228

AyyazAnjum commented 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 use android: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