Shivamdhuria / ForegroundService

A tutorial for foreground service
GNU General Public License v3.0
5 stars 1 forks source link

For : startForeground ANDROID 9.0 PIE (API 28) #1

Open M-kadi opened 3 years ago

M-kadi commented 3 years ago

            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
                startForegroundService(new Intent(v.getContext(), ForgroundService.class));
            else
                startService(new Intent(v.getContext(), ForgroundService.class));

// startService(new Intent(v.getContext(), ForgroundService.class));

hellosagar commented 3 years ago

@M-kadi for this can you share the doc reference?