linphone-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Linphone-developers] Problem with Linphone-Android startup at BOOT_COMP


From: Bruno Francesco
Subject: [Linphone-developers] Problem with Linphone-Android startup at BOOT_COMPLETED
Date: Tue, 13 Sep 2011 09:25:11 +0000

 

Hello everybody,

 

if you are experiencing a bad behavior with linphone with Start at boot time here is the cause and the solution:

 

in manifest.xml you will see the following;

 

     […]

     <receiver android:name="org.linphone.BootReceiver">

          <intent-filter><action android:name="android.intent.action.RECEIVE_BOOT_COMPLETED"></action></intent-filter>

     </receiver>

[…]

<uses-permission android:name="android.permission.BOOT_COMPLETED"></uses-permission>

[…]

 

This won’t never work, just because it cannot work L

Correct the xml as below and all will go fine

 

     […]

     <receiver android:name="org.linphone.BootReceiver">

          <intent-filter>

<action android:name="android.intent.action.BOOT_COMPLETED "></action></intent-filter>

     </receiver>

[…]

<uses-permission android:name="android.permission. RECEIVE_BOOT_COMPLETED"></uses-permission>

[…]

 

With Best Regards

Francesco




--
The information transmitted is intended for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]