I already wrote it and it is not working.
Like this
<provider android:name=“com.ansca.corona.storage.FileContentProvider”
android:authorities=“jp.co.amutus.chariso3rdrace.files”
android:exported=“true” />
<service android:name=“com.ansca.corona.CoronaService” />
<receiver android:name=“com.ansca.corona.SystemStartupBroadcastReceiver”>
<intent-filter>
<action android:name=“android.intent.action.BOOT_COMPLETED” />
</intent-filter>
</receiver>
<receiver android:name=“com.ansca.corona.notifications.AlarmManagerBroadcastReceiver” />
<receiver android:name=“com.ansca.corona.notifications.StatusBarBroadcastReceiver” />
<receiver android:name=“com.ansca.corona.notifications.GoogleCloudMessagingBroadcastReceiver”
android:permission=“com.google.android.c2dm.permission.SEND” >
<intent-filter>
<action android:name=“com.google.android.c2dm.intent.RECEIVE” />
<action android:name=“com.google.android.c2dm.intent.REGISTRATION” />
<category android:name=“my.package.name” />
</intent-filter>
</receiver>
<receiver android:name=“com.ansca.corona.purchasing.GoogleStoreBroadcastReceiver”>
<intent-filter>
<action android:name=“com.android.vending.billing.IN_APP_NOTIFY” />
<action android:name=“com.android.vending.billing.RESPONSE_CODE” />
<action android:name=“com.android.vending.billing.PURCHASE_STATE_CHANGED” />
</intent-filter>
</receiver>