我按照http://developer.xtify.com/display/sdk/Getting+Started+with+Google+Cloud+Messaging中的说明通过Xtify实现Android的推送消息,并执行我的应用程序我收到此错误:
找不到提供商信息com.example.gcmessaging.XTFY_PROVIDER
在接收器标签上的清单中:
....
机器人:名字= “com.xtify.sdk.db.Provider”
机器人:当局= “com.example.gcmessaging.XTIFY_PROVIDER”
android:exported =“false”
你能帮助我,我错了吗?我很感激你的帮助。
由于
答案 0 :(得分:1)
您可能没有添加正确的软件包名称,您会发现它在AndroidManifest.xml文件的顶部定义:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.site.yourapp" ...>
然后将包名称添加到提供者节点:
<provider
android:name="com.xtify.sdk.db.Provider"
android:authorities="com.site.yourapp.XTIFY_PROVIDER"
android:exported="false" />
如果没有为你锻炼,请告诉我。