友盟消息推送

消息推送SDK快速集成:

申请AppKey  ——>  接入Push SDK  ——>  基础接口引入  ——>  消息推送测试  ——>  接入完成


1.申请AppKey


2.接入Push SDK

1).加入依赖

//友盟push相关依赖(必须)

implementation'com.umeng.umsdk:push:6.1.0'

implementation'com.umeng.umsdk:alicloud-httpdns:1.2.5'

implementation'com.umeng.umsdk:alicloud-utils:1.1.5'

implementation'com.umeng.umsdk:alicloud_beacon:1.0.1'

implementation'com.umeng.umsdk:agoo-accs:3.3.8.8-open-fix2'

implementation'com.umeng.umsdk:agoo_networksdk:3.5.5'

implementation'com.umeng.umsdk:agoo_tlog:3.0.0.17'

implementation'com.umeng.umsdk:agoo_tnet4android:3.1.14.9'

implementation'com.umeng.umsdk:asms:1.1.3'

implementation'com.umeng.umsdk:crash:0.0.4'

2).在工程build.gradle配置脚本中buildscript和allprojects段中添加【友盟+】sdk 新maven仓库地址

buildscript {

    repositories {

        google()

        jcenter()

        maven { url 'https://dl.bintray.com/umsdk/release' }

    }

    dependencies {

        classpath 'com.android.tools.build:gradle:3.1.4'

        // NOTE: Do not place your application dependencies here; they belong

        // in the individual module build.gradle files

    }

}

allprojects {

    repositories {

        google()

        jcenter()

        mavenCentral()

        maven { url 'https://dl.bintray.com/umsdk/release' }

    }

}

3).在AndroidManifest.xml文件中引入相关基础组件:

<!-- 以下为基本配置信息,需要自行添加至您的AndroidManifest文件中 start-->

        <service

            android:name="com.taobao.accs.ChannelService"

            android:exported="true"

            android:process=":channel">

            <intent-filter>

                <action android:name="com.taobao.accs.intent.action.SERVICE" />

            </intent-filter>

            <intent-filter>

                <action android:name="com.taobao.accs.intent.action.ELECTION" />

            </intent-filter>

        </service>

        <service

            android:name="com.taobao.accs.data.MsgDistributeService"

            android:exported="true">

            <intent-filter>

                <action android:name="com.taobao.accs.intent.action.RECEIVE" />

            </intent-filter>

        </service>

        <receiver

            android:name="com.taobao.accs.EventReceiver"

            android:process=":channel">

            <intent-filter>

                <action android:name="android.intent.action.BOOT_COMPLETED" />

            </intent-filter>

            <intent-filter>

                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />

            </intent-filter>

            <intent-filter>

                <action android:name="android.intent.action.PACKAGE_REMOVED" />

                <data android:scheme="package" />

            </intent-filter>

            <intent-filter>

                <action android:name="android.intent.action.USER_PRESENT" />

            </intent-filter>

        </receiver>

        <receiver

            android:name="com.taobao.accs.ServiceReceiver"

            android:process=":channel">

            <intent-filter>

                <action android:name="com.taobao.accs.intent.action.COMMAND" />

            </intent-filter>

            <intent-filter>

                <action android:name="com.taobao.accs.intent.action.START_FROM_AGOO" />

            </intent-filter>

        </receiver>

        <service

            android:name="com.taobao.accs.internal.AccsJobService"

            android:permission="android.permission.BIND_JOB_SERVICE"

            android:process=":channel"/>

        <service

            android:name="com.taobao.accs.ChannelService$KernelService"

            android:process=":channel" />

        <service

            android:name="org.android.agoo.accs.AgooService"

            android:exported="true">

            <intent-filter>

                <action android:name="com.taobao.accs.intent.action.RECEIVE" />

            </intent-filter>

        </service>

        <service

            android:name="com.umeng.message.UmengIntentService"

            android:exported="true"

            android:process=":channel">

            <intent-filter>

                <action android:name="org.agoo.android.intent.action.RECEIVE" />

            </intent-filter>

        </service>

        <service

            android:name="com.umeng.message.XiaomiIntentService"

            android:exported="true"

            android:process=":channel">

            <intent-filter>

                <action android:name="org.agoo.android.intent.action.RECEIVE" />

            </intent-filter>

        </service>

        <receiver

            android:name="com.taobao.agoo.AgooCommondReceiver"

            android:exported="true"

            android:process=":channel">

            <intent-filter>

                <action android:name="${applicationId}.intent.action.COMMAND" />

            </intent-filter>

            <intent-filter>

                <action android:name="android.intent.action.PACKAGE_REMOVED" />

                <data android:scheme="package" />

            </intent-filter>

        </receiver>

        <service

            android:name="com.umeng.message.UmengMessageIntentReceiverService"

            android:exported="true"

            android:process=":channel">

            <intent-filter>

                <action android:name="org.android.agoo.client.MessageReceiverService" />

            </intent-filter>

        </service>

        <receiver

            android:name="com.umeng.message.NotificationProxyBroadcastReceiver"

            android:exported="false" />

        <service

            android:name="com.umeng.message.UmengMessageCallbackHandlerService"

            android:permission="android.permission.BIND_JOB_SERVICE"

            android:exported="false">

            <intent-filter>

                <action android:name="com.umeng.messge.registercallback.action" />

            </intent-filter>

            <intent-filter>

                <action android:name="com.umeng.message.enablecallback.action" />

            </intent-filter>

            <intent-filter>

                <action android:name="com.umeng.message.disablecallback.action" />

            </intent-filter>

            <intent-filter>

                <action android:name="com.umeng.message.message.handler.action" />

            </intent-filter>

            <intent-filter>

                <action android:name="com.umeng.message.message.sendmessage.action" />

            </intent-filter>

        </service>

        <service

            android:name="com.umeng.message.UmengDownloadResourceService"

            android:permission="android.permission.BIND_JOB_SERVICE"

            android:exported="false" />

        <provider

            android:name="com.umeng.message.provider.MessageProvider"

            android:authorities="${applicationId}.umeng.message"

            android:exported="false">

            <grant-uri-permission android:pathPattern=".*" />

        </provider>

        <!-- 以下为基本配置信息,需要自行添加至您的AndroidManifest文件中 end-->

4、引入so文件  (全平台so文件下载地址)     

      注意:这边下载的so文件可能会少,最好分方法就是直接吧友盟demo中libs的文件全粘进去(开发者Demo

5.引入默认通知栏通知样式布局文件(开发者Demo

   upush_bar_image_notification.xml

   upush_notification.xml


3.基础接口引入

1).在工程的MyApplication类的 onCreate() 方法中做SDK代码初始化工作。

UMConfigure.init(this, "替换为Appkey,服务后台位置:应用管理 -> 应用信息 -> Appkey", "Umeng", UMConfigure.DEVICE_TYPE_PHONE, "替换为秘钥信息,服务后台位置:应用管理 -> 应用信息 -> Umeng Message Secret");

//获取消息推送代理示例

PushAgent mPushAgent = PushAgent.getInstance(this);

//注册推送服务,每次调用register方法都会回调该接口

mPushAgent.register(new IUmengRegisterCallback() {

  @Override

  public void onSuccess(String deviceToken) {

    //注册成功会返回deviceToken deviceToken是推送消息的唯一标志

    Log.i(TAG,"注册成功:deviceToken:-------->  " + deviceToken);

  }

  @Override

  public void onFailure(String s, String s1) {

    Log.e(TAG,"注册失败:-------->  " + "s:" + s + ",s1:" + s1);

  }

});

deviceToken是【友盟+】消息推送生成的用于标识设备的id,长度为44位,不能定制和修改。同一台设备上不同应用对应的deviceToken不一样。获取deviceToken的值后,可进行消息推送测试!

2).应用数据统计接口

在所有的Activity 的onCreate 方法或在应用的BaseActivity的onCreate方法中添加:

PushAgent.getInstance(context).onAppStart();

注:该方法是【友盟+】Push后台进行日活统计及多维度推送的必调用方法,请务必调用!


4.消息推送测试

顺利获取deviceToken!我们马上可以向这台设备推送消息了~

添加测试设备:

在【友盟+】消息推送服务Push后台的“测试模式”中填写获取到的deviceToken,将该设备添加为测试设备:

在测试消息中新建消息,详细过程如下所示,详细过程如下所示:


5.接入完成

此时在您的测试手机上可以看到您刚才的推送消息!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,294评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,493评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,790评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,595评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,718评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,906评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,053评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,797评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,250评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,570评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,711评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,388评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,018评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,796评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,023评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,461评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,595评论 2 350