For example, consider adding the following IntentService:
Code: Select all
<service android:name=".LCIntentSvcHook"
android:label="@string/app_name"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
Code: Select all
<receiver
android:name=".LCBrdcstRcv"
android:enabled="true" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
It would be great to specify such additions, with a jar, for inclusion in a project build for Android.
Does this seem reasonable? How does one petition for such enhancements?
Thanks!
