cloud - XTIFY failed on find provider packagename.XTFY_PROVIDER -
i'm following instructions in http://developer.xtify.com/display/sdk/getting+started+with+google+cloud+messaging implement push messages android throught xtify, , executing app error:
failed on find provider info com.example.gcmessaging.xtfy_provider
in manifest have on receiver tag:
....
android:name="com.xtify.sdk.db.provider" android:authorities="com.example.gcmessaging.xtify_provider" android:exported="false"
can me wrong? i'd appreciate help.
thanks
you didn't add correct package name, find defined in top of androidmanifest.xml file:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.site.yourapp" ...>
then add package name provider node:
<provider android:name="com.xtify.sdk.db.provider" android:authorities="com.site.yourapp.xtify_provider" android:exported="false" />
if didn't workout you, let me know.
Comments
Post a Comment