2021年1月21日星期四

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;  }  
https://stackoverflow.com/questions/65839585/is-there-something-like-android-foreground-service-in-expo January 22, 2021 at 01:04PM

没有评论:

发表评论