Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.8k views
in Technique[技术] by (71.8m points)

react native ios - Is there something like android foreground service in expo?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...