Android 极光推送快速开发集成指南(1)

server/2025/1/24 15:10:53/

<activity

android:name=“cn.jpush.android.ui.PushActivity”

android:configChanges=“orientation|keyboardHidden”

android:exported=“false”

android:theme=“@android:style/Theme.NoTitleBar”

tools:ignore=“DuplicateActivity”>

<activity

android:name=“cn.jpush.android.ui.PopWinActivity”

android:configChanges=“orientation|keyboardHidden”

android:exported=“false”

android:theme=“@style/MyDialogStyle”>

<service

android:name=“.service.JpushBackgroudeService”

android:enabled=“true”

android:exported=“false”

android:process=“:pushcore”>

<receiver

android:name=“.receiver.PushBackgroudeBrocast”

android:enabled=“true”

android:exported=“false”>

<receiver

android:name=“包名”

android:enabled=“true”

android:exported=“false”>

<activity

android:name=“cn.jpush.android.service.JNotifyActivity”

android:exported=“true”

android:taskAffinity=“jpush.custom”

android:theme=“@android:style/Theme.Translucent.NoTitleBar”>

在gradle中的

defaultConfig{

ndk {

abiFilters ‘armeabi-v7a’, ‘x86’, ‘x86_64’, ‘armeabi-v7a’//,‘arm64-v8a’

}

manifestPlaceholders = [

JPUSH_PKGNAME: applicationId,

JPUSH_APPKEY : “你的ID”, //JPush 上注册的包名对应的 Appkey.

JPUSH_CHANNEL: “developer-default”, //暂时填写默认值即可.

]

}

这样 配置就算可以了,然后在包下,复制从官网下载的demo,到包里,参考地址:https://docs.jiguang.cn//jpush/client/Android/android_3m/

比如TagAliasOperatorHelper这个工具类 改好以后在全局的Applition中 初始化

JPushInterface.setDebugMode(true);

JPushInterface.init(this);

String registrationID = JPushInterface.getRegistrationID(this);//这个可以传给后台 推送到具体的个人

如上配置好之后:

检查一下有没有通知栏权限

package xxx;

import android.app.AppOpsManager;

import android.content.Context;

import android.content.Intent;

import android.content.pm.ApplicationInfo;

import android.net.Uri;

import android.os.Build;

import android.provider.Settings;

import java.lang.reflect.Field;

import java.lang.reflect.Method;

public class CheckAndStartNitifycationUtils

{

public static boolean isNotificationEnabled(Context context) {

String CHECK_OP_NO_THROW = “checkOpNoThrow”;

String OP_POST_NOTIFICATION = “OP_POST_NOTIFICATION”;

AppOpsManager mAppOps = null;

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) {

mAppOps = (AppOpsManager) context.getSystemService(Context.APP_OPS_SERVICE);

}

ApplicationInfo appInfo = context.getApplicationInfo();

String pkg = context.getApplicationContext().getPackageName();

int uid = appInfo.uid;

Class appOpsClass = null;

try {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

appOpsClass = Class.forName(AppOpsManager.class.getName());

}

Method checkOpNoThrowMethod = appOpsClass.getMethod(CHECK_OP_NO_THROW, Integer.TYPE, Integer.TYPE,

String.class);

Field opPostNotificationValue = appOpsClass.getDeclaredField(OP_POST_NOTIFICATION);

int value = (Integer) opPostNotificationValue.get(Integer.class);

return ((Integer) checkOpNoThrowMethod.invoke(mAppOps, value, uid, pkg) == AppOpsManager.MODE_ALLOWED);

} catch (Exception e) {

e.printStackTrace();

}

return false;

}

public static void startNotifyCationAction(Context context)

{

// boolean enabled = isNotificationEnabled(context);

// if (!enabled) {

/**

  • 跳到通知栏设置界面

  • @param context

*/

Intent localIntent = new Intent();

//直接跳转到应用通知设置的代码:

if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

localIntent.setAction(“android.settings.APP_NOTIFICATION_SETTINGS”);

localIntent.putExtra(“app_package”, context.getPackageName());

localIntent.putExtra(“app_uid”, context.getApplicationInfo().uid);

} else if (android.os.Build.VERSION.SDK_INT == Build.VERSION_CODES.KITKAT) {

localIntent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);

localIntent.addCategory(Intent.CATEGORY_DEFAULT);

localIntent.setData(Uri.parse(“package:” + context.getPackageName()));

} else {

//4.4以下没有从app跳转到应用通知设置页面的Action,可考虑跳转到应用详情页面,

localIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

if (Build.VERSION.SDK_INT >= 9) {

localIntent.setAction(“android.settings.APPLICATION_DETAILS_SETTINGS”);

localIntent.setData(Uri.fromParts(“package”, context.getPackageName(), null));

} else if (Build.VERSION.SDK_INT <= 8) {

localIntent.setAction(Intent.ACTION_VIEW);

localIntent.setClassName(“com.android.settings”, “com.android.setting.InstalledAppDetails”);

localIntent.putExtra(“com.android.settings.ApplicationPkgName”, context.getPackageName());

}

}


http://www.ppmy.cn/server/161049.html

相关文章

PyQt5之QLCDNumber

1. 描述 展示LCD样式的数字&#xff0c;它可以显示几乎任何大小的数字&#xff0c;可以显示十进制&#xff0c;十六进制&#xff0c;八进制或二进制数。 继承自QFrame 2.功能作用 (1) 构造函数 QLCDNumber(parent: QWidget None) QLCDNumber(int, parent: QWidget None)…

【Arduino】语言参考功能

前言 翻译Arduino 参考处列出的常用函数。文中为了减少篇幅&#xff0c;达到能快速翻到查询的目标&#xff0c;在介绍函数中&#xff0c;对部分内容进行了省略&#xff0c;不会列出函数输入参数类型&#xff0c;以及使用注意事项等等&#xff0c;所以若是首次使用或者是调试时出…

我的创作纪念日,纪念我的第512天

目录 年末 年初 入围 博客 变动 生活 期待 年末 很快&#xff0c;2024年已经过去了&#xff0c;本想在跨年夜的时候营造一点小小的仪式感&#xff0c;结果也因为身体的原因放弃了&#xff0c;浑身感觉疼痛&#xff0c;躺在床上&#xff0c;闭上眼睛&#xff0c;什么也不…

算力需求大爆发,谁是“大推手”?

大约5亿年前&#xff0c;地球迎来了物种的突然大爆发&#xff0c;标志着生物进化除了缓慢渐变&#xff0c;还可能以跳跃的方式进行。 同样&#xff0c;人工智能在经历70余年曲折发展之后&#xff0c;也处于一个极为关键的时刻&#xff0c;在模型、数据、算力等各项基础技术多年…

Jmeter 动态参数压力测试时间段预定接口

&#x1f3af; 本文档详细介绍了如何使用Apache JMeter进行压力测试&#xff0c;以评估预定接口在高并发场景下的性能表现。通过创建线程组模拟不同数量的用户并发请求&#xff0c;利用CSV文件动态配置时间段ID和用户token&#xff0c;确保了测试数据的真实性和有效性。文档中还…

es的date类型字段按照原生格式进行分组聚合

PUT student2 { "mappings": {"properties": {"name": {"type": "text","analyzer": "standard" // 使用标准分析器&#xff0c;适合姓名字段},"birthday": {"type": "date&…

日常梳理-网络架构

1.F5Nginx F5 Nginx 架构是一种常见的高性能、高可用的网络架构设计&#xff0c;广泛应用于企业级和互联网场景中。 高可用性与负载均衡 F5 是一种高性能的硬件负载均衡器&#xff0c;通常用于四层负载均衡&#xff08;基于 IP 和端口&#xff09;&#xff0c;能够快速分发流…

Flink中的时间和窗口

在批处理统计中&#xff0c;我们可以等待一批数据都到齐后&#xff0c;统一处理。但是在实时处理统计中&#xff0c;我们是来一条就得处理一条&#xff0c;那么我们怎么统计最近一段时间内的数据呢&#xff1f;引入“窗口”。 所谓的“窗口”&#xff0c;一般就是划定的一段时…