यह देर हो सकती है लेकिन मुझे आशा है कि यह किसी की मदद करता है।
मैं उसी समस्या पर इतने समय से अटका हुआ था। लेकिन अब मैंने सोचा कि इस समस्या को कैसे हल किया जाए। यह किसी के लिए भी है, जिसे समान समस्या हो सकती है। लोग कहते रहते हैं कि आपको ऑटोस्टार्ट को सक्षम करना होगा लेकिन मैंने ऑटो स्टार्ट का उपयोग करके इसे प्रबंधित किया।
सबसे पहले, WakeFullBroadcastaReceiver अब पदावनत कर दिया गया है और आपको ब्रॉडकास्टर का उपयोग करना चाहिए। सभी के लिए, आपको बैकग्राउंड सर्विस के बजाय फोरग्रेस्ड सर्विस का उपयोग करना होगा।
मैं आपको निम्नलिखित में उदाहरण दूंगा:
IntentService.class
public class NotificationService extends IntentService {
public NotificationService() {
super("NotificationService");
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
public int onStartCommand(@Nullable Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
return START_NOT_STICKY;
}
@Override
protected void onHandleIntent(@Nullable Intent intent) {
startForegroundServiceT();
sendNotification(intent);
stopSelf();
}
private void startForegroundServiceT(){
if (Build.VERSION.SDK_INT >= 26) {
String CHANNEL_ID = "my_channel_01";
NotificationChannel channel = new NotificationChannel(CHANNEL_ID,
"Channel human readable title",
NotificationManager.IMPORTANCE_DEFAULT);
((NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE)).createNotificationChannel(channel);
Notification notification = new Notification.Builder(this, CHANNEL_ID)
.setContentTitle("")
.setContentText("").build();
startForeground(1, notification);
}
}
private void sendNotification(Intent intent){
}
}
BroadcastReceiver.class में अग्रभूमि सेवा शुरू करें
public class AlarmReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent service = new Intent(context, NotificationService.class);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
context.startForegroundService(service);
} else {
context.startService(service);
}
}
}
और इस तरह सेटआर्लम्स:
public static void setAlarm(Context context, int requestCode, int hour, int minute){
AlarmManager alarmManager =( AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(context
, AlarmReceiver.class);
intent.setAction("android.intent.action.NOTIFY");
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 1001, intent, 0);
Calendar time = getTime(hour, minute);
if (Build.VERSION.SDK_INT >= 23){
alarmManager.setExactAndAllowWhileIdle(AlarmManager.RTC_WAKEUP,time.getTimeInMillis(),pendingIntent);
}
else{
alarmManager.set(AlarmManager.RTC_WAKEUP,time.getTimeInMillis(),pendingIntent);
}
फिर आपको प्रकट में रिसीवर और अग्रभूमि सेवा की घोषणा करनी होगी।
<receiver android:name=".AlarmReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.NOTIFY">
</action>
</intent-filter>
</receiver>
<service
android:name=".NotificationService"
android:enabled="true"
android:exported="true"></service>
मुझे उम्मीद है इससे किसी को सहायता मिलेगी।