I am trying to make an iOS app using expo-react-native. When start foreground service, service call webview activity in my android app. So I want just unstoppable app until user close. Is there something can i use?
This is my android app code for reference.
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
startForeground(1, notification);
Intent dialogIntent = new Intent(getApplicationContext(), WebViewActivity.class);
dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(dialogIntent);
return START_NOT_STICKY;
}
question from:
https://stackoverflow.com/questions/65839585/is-there-something-like-android-foreground-service-in-expo 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…