hi, i want my program to start if the phone rings, so i want to receive that action but cannot find what you need in the manifest to get this intent to start - please help!
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.IC"> <application android:icon="@drawable/icon"> <receiver android:name=".TestIncomingCall" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.TESTINCOMING" /> </intent-filter> </receiver> </application> </manifest> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] Announcing the new M5 SDK! http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

