bootcompleted Questions

10

Solved

I know there has been hundreds of this kind of question asked, but I've been checking them all for a while and still couldn't find any solution. I've seen this answer to "Android BOOT_COMPLETE...
Corneliacornelian asked 7/12, 2013 at 12:22

3

Solved

The below is my manifest file. <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.mccheekati.test_trail"&g...
Garbo asked 15/5, 2017 at 20:48

9

Solved

I am aware that this question has been asked a lot on the site, however, I cant seem to find a solution. My BOOT_COMPLETED receiver is not called when the application is not running. Manifest: &l...
Bayne asked 21/6, 2013 at 1:33

9

Solved

I need to start a service at boot time. I searched a lot. They are talking about Broadcastreceiver. As I am new to android development, I didn't get a clear picture about services on Android. Pleas...
Lambdoid asked 30/12, 2010 at 12:52

2

Solved

I want to listen to APN Changes in my Android App. Therefore I start a Service on android.intent.action.BOOT_COMPLETED. This Service starts a ContentObserver which listens to changes to content:/...

4

Solved

I am trying to 'emulate' a reboot (or anything else with the adb shell am) and am unable to figure out how to reference my component. Then again, maybe I don't even understand what is meant by a co...
Tilda asked 2/3, 2011 at 17:49

2

Solved

I'm trying to start an IntentService within my BOOT_COMPLETED receiver, but in Android O (API 26) I get: java.lang.RuntimeException: java.lang.IllegalStateException: Not allowed to start service...

4

Solved

Since the phone restarts and thus gets disconnected from the Eclipse debugger/LogCat while it's booting up, how do I see where my boot complete broadcast receiver is crashing? I am performing some...
Jackstraw asked 10/4, 2012 at 10:26

4

Solved

I got an error in my android application when it tries to instantiate a receiver that i use to start a service on boot up. The error is obvious, it can not find the class file of my receiver. But e...
Dissidence asked 7/3, 2012 at 12:17

4

Solved

Thanks a ton to this site, I have made significant progress with my first Android project. I'm trying to get the execution suspend in the onReceive() method of a boot completed receiver. Below are...

4

Solved

I have a Service "GroupsTaskAlarmChecker" that is called every 20 seconds by AlarmManager in onCreate of Groups.class activity this way: int seconds = 20; Intent myIntent = new Intent(Groups.thi...
Malfunction asked 5/3, 2013 at 10:20

4

Solved

I am currently working on a application which includes Boot_Completed Broadcast receiver concept. I have tested this app in my Motorola Moto G Phone. The app runs fine and shows the Toast message. ...
Ongoing asked 6/1, 2015 at 5:32

1

Code - public class ShutdownReceiver extends BroadcastReceiver { private static final String TAG = "ShutdownReceiver"; @Override public void onReceive(final Context context, final Intent inten...
Serin asked 3/1, 2013 at 4:30

1

Solved

It shows, Error states that "No eligible devices for app install" Device specification is as follows, Model : Lenovo A369i Android OS Ver : 4.2.2 I am doing below permission in android mainfest...
Peduncle asked 18/2, 2014 at 12:24

2

I've created a BroadcastReceiver, which receives BOOT_COMPLETED. In my AndroidManifest.xml I've added it like so: <receiver android:name=".OnBootReceiver"> <intent-filter> <acti...
Graiggrail asked 22/11, 2012 at 16:54

3

How do i set my application as startup application, so when ever mobile restarts or turned ON, my application starts. <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="htt...
Connivent asked 18/6, 2013 at 11:54

1

Solved

I have a very weird problem, and none of the questions already on the website have an answer or the same problem. I have an app that receives BOOT_COMPLETED. I made sure it could receive...
Unanswerable asked 13/3, 2012 at 10:55
1

© 2022 - 2024 — McMap. All rights reserved.