Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have implemented service in my application. It worked fine with android 2.3.5 and lower SDK devices, recently i bought android4.0 device and when i test the application, service stopped working and i tested Running services from settings(Settings -> Applications -> Running Service) there for my application its showing 0 process and 1 services (Restarting). When i check the logcat, i got the following error

Permission Denial: receiving Intent { act=android.intent.action.BOOT_COMPLETED flg=0x10 } to com.xxxxx.yyyyy requires android.permission.RECEIVE_BOOT_COMPLETED due to sender null (uid 1000)

Whats the issue? Please help me to solve this problem.

My Manifest.xml file code

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.xxxx.yyyy"
android:versionCode="4"
android:versionName="1.3" >

<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="com.xxxx.yyyy.permission.C2D_MESSAGE" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.RECEIVE_SMS" /> 
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.READ_SMS" />       
<uses-permission android:name="android.permission.WRITE_SMS" />
<uses-permission android:name="android.permission.BROADCAST_SMS"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />    

<application 
    android:icon="@drawable/icon" android:label="@string/app_name" android:name=".ApplicationStart"
    android:configChanges="locale" >
    <activity 
        android:name=".SplashScreen"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>


    <activity 
        android:name=".ThanksScreen" 
        android:windowSoftInputMode="adjustResize" 
        android:screenOrientation="portrait" 
        android:configChanges="keyboardHidden|orientation"/>    

    <receiver android:name=".MyStartupIntentReceiver">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <category android:name="android.intent.category.HOME" />
        </intent-filter>
    </receiver>

    <service android:name=".services.CallService">
    <intent-filter>
            <action android:name="com.xxxx.yyyy.services.CallService" />
    </intent-filter>

    </service>

</application>

share|improve this question
1  
requires android.permission.RECEIVE_BOOT_COMPLETED says all you need. Have you set the permission? Show us your manifest! – WarrenFaith Mar 5 '12 at 16:56
I added that permission</application> <uses-permission android:name="android.permission.INTERNET"> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> </manifest> – Andro Dev Mar 5 '12 at 17:01
Please help me. More over im getting some more warning messages in logcat like the follwoing Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone – Andro Dev Mar 5 '12 at 17:04
which method are you using for handling start request means onStart() or OnStartCommand() ??? – ρяσѕρєя K Mar 5 '12 at 17:08
onStartCommand(), But the thing is, Its working fine with 2.3.5 SDK. making issues only with 4.0. – Andro Dev Mar 5 '12 at 17:25
show 6 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.