mirror of
https://github.com/jpush/jpush-phonegap-plugin.git
synced 2025-03-15 21:41:05 +08:00
commit
2ebacad254
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,5 +1,5 @@
|
|||||||
# Created by https://www.gitignore.io/api/macos,apachecordova
|
# Created by https://www.gitignore.io/api/macos,apachecordova
|
||||||
|
.idea
|
||||||
### ApacheCordova ###
|
### ApacheCordova ###
|
||||||
# Apache Cordova generated files and directories
|
# Apache Cordova generated files and directories
|
||||||
bin/*
|
bin/*
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<title>JPush Phonegap Simple Demo</title>
|
<title>JPush Phonegap Simple Demo</title>
|
||||||
@ -18,15 +18,15 @@
|
|||||||
|
|
||||||
initiateUI();
|
initiateUI();
|
||||||
};
|
};
|
||||||
|
|
||||||
var getRegistrationID = function() {
|
var getRegistrationID = function() {
|
||||||
window.JPush.getRegistrationID(onGetRegistrationID);
|
window.JPush.getRegistrationID(onGetRegistrationID);
|
||||||
};
|
};
|
||||||
|
|
||||||
var onGetRegistrationID = function(data) {
|
var onGetRegistrationID = function(data) {
|
||||||
try {
|
try {
|
||||||
console.log("JPushPlugin:registrationID is " + data);
|
console.log("JPushPlugin:registrationID is " + data);
|
||||||
|
|
||||||
if (data.length == 0) {
|
if (data.length == 0) {
|
||||||
var t1 = window.setTimeout(getRegistrationID, 1000);
|
var t1 = window.setTimeout(getRegistrationID, 1000);
|
||||||
}
|
}
|
||||||
@ -36,7 +36,7 @@
|
|||||||
console.log(exception);
|
console.log(exception);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var onTagsWithAlias = function(event) {
|
var onTagsWithAlias = function(event) {
|
||||||
try {
|
try {
|
||||||
console.log("onTagsWithAlias");
|
console.log("onTagsWithAlias");
|
||||||
@ -48,7 +48,7 @@
|
|||||||
console.log(exception)
|
console.log(exception)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var onOpenNotification = function(event) {
|
var onOpenNotification = function(event) {
|
||||||
try {
|
try {
|
||||||
var alertContent;
|
var alertContent;
|
||||||
@ -62,7 +62,7 @@
|
|||||||
console.log("JPushPlugin:onOpenNotification" + exception);
|
console.log("JPushPlugin:onOpenNotification" + exception);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var onReceiveNotification = function(event) {
|
var onReceiveNotification = function(event) {
|
||||||
try {
|
try {
|
||||||
var alertContent;
|
var alertContent;
|
||||||
@ -76,7 +76,7 @@
|
|||||||
console.log(exception)
|
console.log(exception)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var onReceiveMessage = function(event) {
|
var onReceiveMessage = function(event) {
|
||||||
try {
|
try {
|
||||||
var message;
|
var message;
|
||||||
@ -90,7 +90,7 @@
|
|||||||
console.log("JPushPlugin:onReceiveMessage-->" + exception);
|
console.log("JPushPlugin:onReceiveMessage-->" + exception);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var initiateUI = function() {
|
var initiateUI = function() {
|
||||||
try {
|
try {
|
||||||
window.JPush.init();
|
window.JPush.init();
|
||||||
@ -110,7 +110,7 @@
|
|||||||
var tag2 = $("#tagText2").val()
|
var tag2 = $("#tagText2").val()
|
||||||
var tag3 = $("#tagText3").val()
|
var tag3 = $("#tagText3").val()
|
||||||
var tags = []
|
var tags = []
|
||||||
|
|
||||||
if (tag1) {
|
if (tag1) {
|
||||||
tags.push(tag1)
|
tags.push(tag1)
|
||||||
}
|
}
|
||||||
@ -123,7 +123,7 @@
|
|||||||
|
|
||||||
window.JPush.setTags({ sequence: 1, tags: tags },
|
window.JPush.setTags({ sequence: 1, tags: tags },
|
||||||
function (result) {
|
function (result) {
|
||||||
$("#tagsResult").html(result.tags)
|
$("#tagsResult").html(JSON.stringify(result.tags))
|
||||||
}, function (error) {
|
}, function (error) {
|
||||||
alert(error.code)
|
alert(error.code)
|
||||||
})
|
})
|
||||||
@ -135,7 +135,7 @@
|
|||||||
$("#getAllTags").click(function (event) {
|
$("#getAllTags").click(function (event) {
|
||||||
window.JPush.getAllTags({ sequence: 2 },
|
window.JPush.getAllTags({ sequence: 2 },
|
||||||
function (result) {
|
function (result) {
|
||||||
$("#tagsResult").html(result.tags)
|
$("#tagsResult").html(JSON.stringify(result.tags))
|
||||||
}, function (error) {
|
}, function (error) {
|
||||||
alert(error.code)
|
alert(error.code)
|
||||||
})
|
})
|
||||||
@ -179,14 +179,14 @@
|
|||||||
})
|
})
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
document.addEventListener("deviceready", onDeviceReady, false);
|
document.addEventListener("deviceready", onDeviceReady, false);
|
||||||
document.addEventListener("jpush.openNotification", onOpenNotification, false);
|
document.addEventListener("jpush.openNotification", onOpenNotification, false);
|
||||||
document.addEventListener("jpush.receiveNotification", onReceiveNotification, false);
|
document.addEventListener("jpush.receiveNotification", onReceiveNotification, false);
|
||||||
document.addEventListener("jpush.receiveMessage", onReceiveMessage, false);
|
document.addEventListener("jpush.receiveMessage", onReceiveMessage, false);
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div data-role="page" id="page">
|
<div data-role="page" id="page">
|
||||||
<div data-role="content">
|
<div data-role="content">
|
||||||
@ -235,7 +235,7 @@
|
|||||||
<input type="button" id="getAllTags" value="Get all tags" />
|
<input type="button" id="getAllTags" value="Get all tags" />
|
||||||
<input type="button" id="cleanTags" value="Clean tags" />
|
<input type="button" id="cleanTags" value="Clean tags" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div data-role="fieldcontain">
|
<div data-role="fieldcontain">
|
||||||
<input type="button" id="setAlias" value="Set alias" />
|
<input type="button" id="setAlias" value="Set alias" />
|
||||||
<input type="button" id="getAlias" value="Get alias" />
|
<input type="button" id="getAlias" value="Get alias" />
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "jpush-phonegap-plugin",
|
"name": "jpush-phonegap-plugin",
|
||||||
"version": "3.6.4",
|
"version": "3.7.0",
|
||||||
"description": "JPush for cordova plugin",
|
"description": "JPush for cordova plugin",
|
||||||
"cordova": {
|
"cordova": {
|
||||||
"id": "jpush-phonegap-plugin",
|
"id": "jpush-phonegap-plugin",
|
||||||
@ -23,7 +23,7 @@
|
|||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"cordova-plugin-device": "*",
|
"cordova-plugin-device": "*",
|
||||||
"cordova-plugin-jcore": ">=1.2.8"
|
"cordova-plugin-jcore": ">=1.3.0"
|
||||||
},
|
},
|
||||||
"author": "JiGuang",
|
"author": "JiGuang",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
179
plugin.xml
179
plugin.xml
@ -2,7 +2,7 @@
|
|||||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
id="jpush-phonegap-plugin"
|
id="jpush-phonegap-plugin"
|
||||||
version="3.6.4">
|
version="3.7.0">
|
||||||
|
|
||||||
<name>JPush</name>
|
<name>JPush</name>
|
||||||
<description>JPush for cordova plugin</description>
|
<description>JPush for cordova plugin</description>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<source-file src="src/ios/Plugins/AppDelegate+JPush.m" />
|
<source-file src="src/ios/Plugins/AppDelegate+JPush.m" />
|
||||||
|
|
||||||
<header-file src="src/ios/lib/JPUSHService.h" />
|
<header-file src="src/ios/lib/JPUSHService.h" />
|
||||||
<source-file src="src/ios/lib/jpush-ios-3.1.2.a" framework="true" />
|
<source-file src="src/ios/lib/jpush-ios-3.2.1.a" framework="true" />
|
||||||
<resource-file src="src/ios/JPushConfig.plist" />
|
<resource-file src="src/ios/JPushConfig.plist" />
|
||||||
|
|
||||||
<framework src="CFNetwork.framework" weak="true" />
|
<framework src="CFNetwork.framework" weak="true" />
|
||||||
@ -82,8 +82,8 @@
|
|||||||
<permission android:name="$PACKAGE_NAME.permission.JPUSH_MESSAGE"
|
<permission android:name="$PACKAGE_NAME.permission.JPUSH_MESSAGE"
|
||||||
android:protectionLevel="signature" />
|
android:protectionLevel="signature" />
|
||||||
|
|
||||||
|
<!-- Required 一些系统要求的权限,如访问网络等-->
|
||||||
<uses-permission android:name="$PACKAGE_NAME.permission.JPUSH_MESSAGE" />
|
<uses-permission android:name="$PACKAGE_NAME.permission.JPUSH_MESSAGE" />
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
|
<uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||||
@ -91,21 +91,51 @@
|
|||||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||||
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
|
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
|
||||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Optional for location -->
|
||||||
<uses-permission android:name="android.permission.VIBRATE" />
|
<uses-permission android:name="android.permission.VIBRATE" />
|
||||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <!-- 用于开启 debug 版本的应用在6.0 系统上 层叠窗口权限 -->
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||||
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /><!-- Android Q后台定位权限-->
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
||||||
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
||||||
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<config-file target="AndroidManifest.xml" parent="/manifest/application" mode="merge">
|
<config-file target="AndroidManifest.xml" parent="/manifest/application" mode="merge">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Rich push 核心功能 since 2.0.6-->
|
||||||
|
<activity
|
||||||
|
android:name="cn.jpush.android.ui.PopWinActivity"
|
||||||
|
android:theme="@style/MyDialogStyle"
|
||||||
|
android:exported="false">
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<!-- Required SDK核心功能-->
|
||||||
|
<activity
|
||||||
|
android:name="cn.jpush.android.ui.PushActivity"
|
||||||
|
android:configChanges="orientation|keyboardHidden"
|
||||||
|
android:theme="@android:style/Theme.NoTitleBar"
|
||||||
|
android:exported="false">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="cn.jpush.android.ui.PushActivity" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<category android:name="$PACKAGE_NAME" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
<!-- Required SDK 核心功能-->
|
<!-- Required SDK 核心功能-->
|
||||||
<service android:name="cn.jpush.android.service.PushService"
|
<!-- 可配置android:process参数将PushService放在其他进程中 -->
|
||||||
android:enabled="true"
|
<service
|
||||||
android:exported="false"
|
android:name="cn.jpush.android.service.PushService"
|
||||||
android:process=":remote">
|
android:process=":pushcore"
|
||||||
|
android:exported="false">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="cn.jpush.android.intent.REGISTER" />
|
<action android:name="cn.jpush.android.intent.REGISTER" />
|
||||||
<action android:name="cn.jpush.android.intent.REPORT" />
|
<action android:name="cn.jpush.android.intent.REPORT" />
|
||||||
@ -116,34 +146,39 @@
|
|||||||
|
|
||||||
<!-- since 3.0.9 Required SDK 核心功能-->
|
<!-- since 3.0.9 Required SDK 核心功能-->
|
||||||
<provider
|
<provider
|
||||||
android:authorities="$PACKAGE_NAME.DataProvider"
|
android:authorities="应用的包名.DataProvider"
|
||||||
android:name="cn.jpush.android.service.DataProvider"
|
android:name="cn.jpush.android.service.DataProvider"
|
||||||
android:exported="true" />
|
android:process=":pushcore"
|
||||||
|
android:exported="false"
|
||||||
|
/>
|
||||||
|
|
||||||
<!-- since 1.8.0 option 可选项。用于同一设备中不同应用的 JPush 服务相互拉起的功能。 -->
|
<!-- since 1.8.0 option 可选项。用于同一设备中不同应用的JPush服务相互拉起的功能。 -->
|
||||||
<!-- 若不启用该功能可删除该组件,将不拉起其他应用也不能被其他应用拉起 -->
|
<!-- 若不启用该功能可删除该组件,将不拉起其他应用也不能被其他应用拉起 -->
|
||||||
<service android:name="cn.jpush.android.service.DaemonService"
|
<service
|
||||||
android:enabled="true"
|
android:name="cn.jpush.android.service.DaemonService"
|
||||||
android:exported="true">
|
android:enabled="true"
|
||||||
|
android:exported="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="cn.jpush.android.intent.DaemonService" />
|
<action android:name="cn.jpush.android.intent.DaemonService" />
|
||||||
<category android:name="$PACKAGE_NAME" />
|
<category android:name="$PACKAGE_NAME" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<!-- since 3.1.0 Required SDK 核心功能-->
|
<!-- since 3.1.0 Required SDK 核心功能-->
|
||||||
<provider
|
<provider
|
||||||
android:authorities="$PACKAGE_NAME.DownloadProvider"
|
android:authorities="$PACKAGE_NAME.DownloadProvider"
|
||||||
android:name="cn.jpush.android.service.DownloadProvider"
|
android:name="cn.jpush.android.service.DownloadProvider"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- Required SDK核心功能-->
|
<!-- Required SDK核心功能-->
|
||||||
<receiver android:name="cn.jpush.android.service.PushReceiver"
|
<receiver
|
||||||
android:enabled="true">
|
android:name="cn.jpush.android.service.PushReceiver"
|
||||||
|
android:enabled="true"
|
||||||
|
android:exported="false">
|
||||||
<intent-filter android:priority="1000">
|
<intent-filter android:priority="1000">
|
||||||
<!--Required 显示通知栏 -->
|
<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> <!--Required 显示通知栏 -->
|
||||||
<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" />
|
|
||||||
<category android:name="$PACKAGE_NAME" />
|
<category android:name="$PACKAGE_NAME" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
@ -154,76 +189,71 @@
|
|||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.PACKAGE_ADDED" />
|
<action android:name="android.intent.action.PACKAGE_ADDED" />
|
||||||
<action android:name="android.intent.action.PACKAGE_REMOVED" />
|
<action android:name="android.intent.action.PACKAGE_REMOVED" />
|
||||||
|
|
||||||
<data android:scheme="package" />
|
<data android:scheme="package" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
<!-- Required SDK核心功能 -->
|
|
||||||
<activity android:name="cn.jpush.android.ui.PushActivity"
|
|
||||||
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
|
||||||
android:configChanges="orientation|keyboardHidden"
|
|
||||||
android:exported="false" >
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="cn.jpush.android.ui.PushActivity" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<category android:name="$PACKAGE_NAME" />
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
|
||||||
|
|
||||||
<!-- SDK 核心功能-->
|
|
||||||
<activity
|
|
||||||
android:name="cn.jpush.android.ui.PopWinActivity"
|
|
||||||
android:configChanges="orientation|keyboardHidden"
|
|
||||||
android:exported="false"
|
|
||||||
android:theme="@style/MyDialogStyle">
|
|
||||||
<intent-filter>
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<category android:name="$PACKAGE_NAME" />
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
|
||||||
|
|
||||||
<!-- Required SDK 核心功能 -->
|
|
||||||
<service android:name="cn.jpush.android.service.DownloadService"
|
|
||||||
android:enabled="true"
|
|
||||||
android:exported="false">
|
|
||||||
</service>
|
|
||||||
<!-- Required SDK核心功能-->
|
<!-- Required SDK核心功能-->
|
||||||
<receiver android:name="cn.jpush.android.service.AlarmReceiver" />
|
<receiver android:name="cn.jpush.android.service.AlarmReceiver" android:exported="false"/>
|
||||||
|
|
||||||
<receiver android:name="cn.jiguang.cordova.push.JPushEventReceiver"
|
<!--since 3.3.0 接收JPush相关事件-->
|
||||||
android:enabled="true"
|
<receiver android:name="cn.jiguang.cordova.push.JPushEventReceiver">
|
||||||
android:exported="false">
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
|
<action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
|
||||||
<category android:name="$PACKAGE_NAME" />
|
<category android:name="$PACKAGE_NAME"></category>
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
<!-- 插件通知广播接收器 -->
|
<!--since 3.3.0 Required SDK核心功能-->
|
||||||
|
<activity
|
||||||
|
android:name="cn.jpush.android.service.JNotifyActivity"
|
||||||
|
android:exported="true"
|
||||||
|
android:taskAffinity="jpush.custom"
|
||||||
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="cn.jpush.android.intent.JNotifyActivity" />
|
||||||
|
<category android:name="$PACKAGE_NAME" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<!-- since 3.3.0 Required SDK 核心功能-->
|
||||||
|
<!-- 可配置android:process参数将PushService放在其他进程中 -->
|
||||||
|
<!--User defined. For test only 继承自cn.jpush.android.service.JCommonService-->
|
||||||
|
<service android:name="cn.jiguang.cordova.push.PushService"
|
||||||
|
android:process=":pushcore">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="cn.jiguang.user.service.action" />
|
||||||
|
</intent-filter>
|
||||||
|
</service>
|
||||||
|
|
||||||
|
|
||||||
<receiver
|
<receiver
|
||||||
android:name="cn.jiguang.cordova.push.JPushReceiver"
|
android:name="cn.jiguang.cordova.push.JPushReceiver"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:exported="false">
|
android:exported="false">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="cn.jpush.android.intent.REGISTRATION" />
|
<action android:name="cn.jpush.android.intent.REGISTRATION" />
|
||||||
<action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" />
|
<action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" />
|
||||||
<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" />
|
<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" />
|
||||||
<action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" />
|
<action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" />
|
||||||
<action android:name="cn.jpush.android.intent.CONNECTION" />
|
<action android:name="cn.jpush.android.intent.CONNECTION" />
|
||||||
<category android:name="$PACKAGE_NAME" />
|
|
||||||
|
<category android:name="net.sourceforge.growingiodemo" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
|
<!-- Required . Enable it you can get statistics data with channel -->
|
||||||
|
<meta-data android:name="JPUSH_CHANNEL" android:value="$CHANNEL"/>
|
||||||
|
<meta-data android:name="JPUSH_APPKEY" android:value="$APP_KEY" /> <!-- </>值来自开发者平台取得的AppKey-->
|
||||||
|
|
||||||
<!-- Required. Enable it you can get statistics data with channel -->
|
|
||||||
<meta-data android:name="JPUSH_CHANNEL" android:value="$CHANNEL" />
|
|
||||||
<meta-data android:name="JPUSH_APPKEY" android:value="$APP_KEY" />
|
|
||||||
</config-file>
|
</config-file>
|
||||||
|
|
||||||
<lib-file src="src/android/libs/jpush-android-3.2.0.jar" />
|
<lib-file src="src/android/libs/jpush-android-3.3.4.jar" />
|
||||||
|
|
||||||
<source-file src="src/android/JPushReceiver.java" target-dir="src/cn/jiguang/cordova/push" />
|
<source-file src="src/android/PushService.java" target-dir="src/cn/jiguang/cordova/push" />
|
||||||
<source-file src="src/android/JPushPlugin.java" target-dir="src/cn/jiguang/cordova/push" />
|
<source-file src="src/android/JPushPlugin.java" target-dir="src/cn/jiguang/cordova/push" />
|
||||||
|
<source-file src="src/android/JPushReceiver.java" target-dir="src/cn/jiguang/cordova/push" />
|
||||||
<source-file src="src/android/JPushEventReceiver.java" target-dir="src/cn/jiguang/cordova/push" />
|
<source-file src="src/android/JPushEventReceiver.java" target-dir="src/cn/jiguang/cordova/push" />
|
||||||
|
|
||||||
<resource-file src="src/android/res/drawable-hdpi/jpush_richpush_btn_selector.xml"
|
<resource-file src="src/android/res/drawable-hdpi/jpush_richpush_btn_selector.xml"
|
||||||
@ -236,14 +266,19 @@
|
|||||||
<resource-file src="src/android/res/drawable-hdpi/jpush_ic_richpush_actionbar_divider.png"
|
<resource-file src="src/android/res/drawable-hdpi/jpush_ic_richpush_actionbar_divider.png"
|
||||||
target="res/drawable-hdpi/jpush_ic_richpush_actionbar_divider.png" />
|
target="res/drawable-hdpi/jpush_ic_richpush_actionbar_divider.png" />
|
||||||
|
|
||||||
<resource-file src="src/android/res/layout/jpush_popwin_layout.xml"
|
<resource-file src="src/android/res/layout/jpush_popwin_layout.xml"
|
||||||
target="res/layout/jpush_popwin_layout.xml" />
|
target="res/layout/jpush_popwin_layout.xml" />
|
||||||
<resource-file src="src/android/res/layout/jpush_webview_layout.xml"
|
<resource-file src="src/android/res/layout/jpush_webview_layout.xml"
|
||||||
target="res/layout/jpush_webview_layout.xml" />
|
target="res/layout/jpush_webview_layout.xml" />
|
||||||
<resource-file src="src/android/res/layout/test_notification_layout.xml"
|
<resource-file src="src/android/res/layout/push_notification.xml"
|
||||||
target="res/layout/test_notification_layout.xml" />
|
target="res/layout/push_notification.xml" />
|
||||||
|
|
||||||
<resource-file src="src/android/res/values/jpush_style.xml"
|
<resource-file src="src/android/res/values/jpush_style.xml"
|
||||||
target="res/values/jpush_style.xml" />
|
target="res/values/jpush_style.xml" />
|
||||||
|
<resource-file src="src/android/res/values/jpush_string.xml"
|
||||||
|
target="res/values/jpush_string.xml" />
|
||||||
|
|
||||||
|
<resource-file src="src/android/res/values-zh/jpush_string.xml"
|
||||||
|
target="res/values-zh/jpush_string.xml" />
|
||||||
</platform>
|
</platform>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package cn.jiguang.cordova.push;
|
package cn.jiguang.cordova.push;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
@ -9,9 +10,13 @@ import org.json.JSONArray;
|
|||||||
import org.json.JSONException;
|
import org.json.JSONException;
|
||||||
import org.json.JSONObject;
|
import org.json.JSONObject;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
|
import cn.jpush.android.api.CustomMessage;
|
||||||
|
import cn.jpush.android.api.JPushInterface;
|
||||||
import cn.jpush.android.api.JPushMessage;
|
import cn.jpush.android.api.JPushMessage;
|
||||||
|
import cn.jpush.android.api.NotificationMessage;
|
||||||
import cn.jpush.android.service.JPushMessageReceiver;
|
import cn.jpush.android.service.JPushMessageReceiver;
|
||||||
|
|
||||||
public class JPushEventReceiver extends JPushMessageReceiver {
|
public class JPushEventReceiver extends JPushMessageReceiver {
|
||||||
@ -21,7 +26,7 @@ public class JPushEventReceiver extends JPushMessageReceiver {
|
|||||||
@Override
|
@Override
|
||||||
public void onTagOperatorResult(Context context, JPushMessage jPushMessage) {
|
public void onTagOperatorResult(Context context, JPushMessage jPushMessage) {
|
||||||
super.onTagOperatorResult(context, jPushMessage);
|
super.onTagOperatorResult(context, jPushMessage);
|
||||||
|
//Log.e(TAG,"onTagOperatorResult:"+jPushMessage);
|
||||||
JSONObject resultJson = new JSONObject();
|
JSONObject resultJson = new JSONObject();
|
||||||
|
|
||||||
int sequence = jPushMessage.getSequence();
|
int sequence = jPushMessage.getSequence();
|
||||||
@ -72,6 +77,7 @@ public class JPushEventReceiver extends JPushMessageReceiver {
|
|||||||
public void onCheckTagOperatorResult(Context context, JPushMessage jPushMessage) {
|
public void onCheckTagOperatorResult(Context context, JPushMessage jPushMessage) {
|
||||||
super.onCheckTagOperatorResult(context, jPushMessage);
|
super.onCheckTagOperatorResult(context, jPushMessage);
|
||||||
|
|
||||||
|
//Log.e(TAG,"onCheckTagOperatorResult:"+jPushMessage);
|
||||||
JSONObject resultJson = new JSONObject();
|
JSONObject resultJson = new JSONObject();
|
||||||
|
|
||||||
int sequence = jPushMessage.getSequence();
|
int sequence = jPushMessage.getSequence();
|
||||||
@ -113,6 +119,7 @@ public class JPushEventReceiver extends JPushMessageReceiver {
|
|||||||
public void onAliasOperatorResult(Context context, JPushMessage jPushMessage) {
|
public void onAliasOperatorResult(Context context, JPushMessage jPushMessage) {
|
||||||
super.onAliasOperatorResult(context, jPushMessage);
|
super.onAliasOperatorResult(context, jPushMessage);
|
||||||
|
|
||||||
|
//Log.e(TAG,"onAliasOperatorResult:"+jPushMessage);
|
||||||
JSONObject resultJson = new JSONObject();
|
JSONObject resultJson = new JSONObject();
|
||||||
|
|
||||||
int sequence = jPushMessage.getSequence();
|
int sequence = jPushMessage.getSequence();
|
||||||
@ -152,4 +159,44 @@ public class JPushEventReceiver extends JPushMessageReceiver {
|
|||||||
|
|
||||||
JPushPlugin.eventCallbackMap.remove(sequence);
|
JPushPlugin.eventCallbackMap.remove(sequence);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onRegister(Context context, String regId) {
|
||||||
|
//Log.e(TAG,"onRegister:"+regId);
|
||||||
|
JPushPlugin.transmitReceiveRegistrationId(regId);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onMessage(Context context, CustomMessage customMessage) {
|
||||||
|
super.onMessage(context,customMessage);
|
||||||
|
//Log.e(TAG,"onMessage:"+customMessage);
|
||||||
|
// String msg = customMessage.message;//intent.getStringExtra(JPushInterface.EXTRA_MESSAGE);
|
||||||
|
// Map<String, Object> extras = getNotificationExtras(intent);
|
||||||
|
// JPushPlugin.transmitMessageReceive(msg, extras);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onNotifyMessageArrived(Context context, NotificationMessage notificationMessage) {
|
||||||
|
super.onNotifyMessageArrived(context, notificationMessage);
|
||||||
|
|
||||||
|
//Log.e(TAG,"onNotifyMessageArrived:"+notificationMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onNotifyMessageOpened(Context context, NotificationMessage notificationMessage) {
|
||||||
|
super.onNotifyMessageOpened(context, notificationMessage);
|
||||||
|
//Log.e(TAG,"onNotifyMessageOpened:"+notificationMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onMobileNumberOperatorResult(Context context, JPushMessage jPushMessage) {
|
||||||
|
super.onMobileNumberOperatorResult(context, jPushMessage);
|
||||||
|
//Log.e(TAG,"onMobileNumberOperatorResult:"+jPushMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onMultiActionClicked(Context context, Intent intent) {
|
||||||
|
super.onMultiActionClicked(context, intent);
|
||||||
|
//Log.e(TAG,"onMultiActionClicked:"+intent);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
6
src/android/PushService.java
Normal file
6
src/android/PushService.java
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
package cn.jiguang.cordova.push;
|
||||||
|
|
||||||
|
import cn.jpush.android.service.JCommonService;
|
||||||
|
|
||||||
|
public class PushService extends JCommonService {
|
||||||
|
}
|
Binary file not shown.
BIN
src/android/libs/jpush-android-3.3.4.jar
Executable file
BIN
src/android/libs/jpush-android-3.3.4.jar
Executable file
Binary file not shown.
0
src/android/res/drawable-hdpi/jpush_ic_richpush_actionbar_back.png
Normal file → Executable file
0
src/android/res/drawable-hdpi/jpush_ic_richpush_actionbar_back.png
Normal file → Executable file
Before Width: | Height: | Size: 695 B After Width: | Height: | Size: 695 B |
0
src/android/res/drawable-hdpi/jpush_ic_richpush_actionbar_divider.png
Normal file → Executable file
0
src/android/res/drawable-hdpi/jpush_ic_richpush_actionbar_divider.png
Normal file → Executable file
Before Width: | Height: | Size: 181 B After Width: | Height: | Size: 181 B |
172
src/android/res/layout/push_notification.xml
Executable file
172
src/android/res/layout/push_notification.xml
Executable file
@ -0,0 +1,172 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/push_root_view"
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:paddingBottom="4dp"
|
||||||
|
android:paddingTop="2dp"
|
||||||
|
android:paddingLeft="8dp"
|
||||||
|
android:paddingRight="8dp"
|
||||||
|
>
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/push_notification_bg"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:scaleType="centerCrop"/>
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/push_notification_style_default"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/push_notification_layout_lefttop"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignParentTop="true"
|
||||||
|
android:layout_alignParentLeft="true"
|
||||||
|
android:layout_toLeftOf="@+id/push_notification_big_icon"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/push_notification_small_icon"
|
||||||
|
android:layout_width="18dp"
|
||||||
|
android:layout_height="18dp"
|
||||||
|
android:layout_marginLeft="6dp"
|
||||||
|
android:scaleType="centerInside"/>
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/push_notification_title"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginLeft="4dp"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:maxWidth="200dp"
|
||||||
|
android:maxLength="24"
|
||||||
|
android:textColor="@android:color/black"
|
||||||
|
android:textSize="12sp"/>
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/push_notification_dot"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginLeft="4dp"
|
||||||
|
android:text="· "
|
||||||
|
android:textColor="@android:color/black"
|
||||||
|
android:textSize="20sp"/>
|
||||||
|
<TextView
|
||||||
|
android:maxLines="1"
|
||||||
|
android:id="@+id/push_notification_date"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:textColor="@android:color/black"
|
||||||
|
android:textSize="12sp"
|
||||||
|
/>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/push_notification_big_icon"
|
||||||
|
android:layout_width="48dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:layout_alignParentRight="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_marginRight="8dp"
|
||||||
|
android:scaleType="centerInside"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/push_notification_sub_title"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:textColor="@android:color/black"
|
||||||
|
android:layout_below="@id/push_notification_layout_lefttop"
|
||||||
|
android:layout_toLeftOf="@+id/push_notification_big_icon"
|
||||||
|
android:layout_marginLeft="6dp"
|
||||||
|
android:layout_marginRight="4dp"
|
||||||
|
android:visibility="gone"
|
||||||
|
android:layout_marginTop="1dp"
|
||||||
|
android:textSize="13sp"
|
||||||
|
android:maxLines="1"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/push_notification_content"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:textColor="@android:color/black"
|
||||||
|
android:layout_below="@id/push_notification_sub_title"
|
||||||
|
android:layout_toLeftOf="@+id/push_notification_big_icon"
|
||||||
|
android:layout_marginLeft="6dp"
|
||||||
|
android:layout_marginRight="4dp"
|
||||||
|
android:layout_marginTop="1dp"
|
||||||
|
android:textSize="13sp"
|
||||||
|
android:maxLines="2"
|
||||||
|
android:ellipsize="end"
|
||||||
|
/>
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/push_notification_content_one_line"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:visibility="gone"
|
||||||
|
android:textColor="@android:color/black"
|
||||||
|
android:layout_below="@id/push_notification_sub_title"
|
||||||
|
android:layout_toLeftOf="@+id/push_notification_big_icon"
|
||||||
|
android:layout_marginLeft="6dp"
|
||||||
|
android:layout_marginRight="4dp"
|
||||||
|
android:layout_marginTop="1dp"
|
||||||
|
android:textSize="13sp"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:ellipsize="end"
|
||||||
|
/>
|
||||||
|
</RelativeLayout>
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/push_notification_style_1"
|
||||||
|
android:visibility="gone"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/push_notification_style_1_big_icon"
|
||||||
|
android:layout_width="50dp"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_alignParentLeft="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:scaleType="centerInside"/>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_marginLeft="6dp"
|
||||||
|
android:layout_toRightOf="@+id/push_notification_style_1_big_icon"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<RelativeLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/push_notification_style_1_date"
|
||||||
|
android:textSize="12sp"
|
||||||
|
android:layout_alignParentRight="true"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/push_notification_style_1_title"
|
||||||
|
android:layout_alignParentLeft="true"
|
||||||
|
android:layout_toLeftOf="@+id/push_notification_style_1_date"
|
||||||
|
android:textSize="12sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:layout_marginRight="8dp"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
|
</RelativeLayout>
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/push_notification_style_1_content"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:textColor="@android:color/black"
|
||||||
|
android:layout_marginRight="4dp"
|
||||||
|
android:layout_marginTop="1dp"
|
||||||
|
android:textSize="13sp"
|
||||||
|
android:maxLines="2"
|
||||||
|
android:ellipsize="end" />
|
||||||
|
</LinearLayout>
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
@ -1,24 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:orientation="horizontal" >
|
|
||||||
<ImageView android:id="@+id/icon"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
/>
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:orientation="vertical"
|
|
||||||
>
|
|
||||||
<TextView android:id="@+id/title"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
/>
|
|
||||||
<TextView android:id="@+id/text"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
/>
|
|
||||||
</LinearLayout>
|
|
||||||
</LinearLayout>
|
|
7
src/android/res/values-zh/jpush_string.xml
Executable file
7
src/android/res/values-zh/jpush_string.xml
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="jg_channel_name_p_min">不重要</string>
|
||||||
|
<string name="jg_channel_name_p_low">不重要</string>
|
||||||
|
<string name="jg_channel_name_p_default">普通</string>
|
||||||
|
<string name="jg_channel_name_p_high">重要</string>
|
||||||
|
</resources>
|
8
src/android/res/values/jpush_string.xml
Executable file
8
src/android/res/values/jpush_string.xml
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="jg_channel_name_p_min">LOW</string>
|
||||||
|
<string name="jg_channel_name_p_low">LOW</string>
|
||||||
|
<string name="jg_channel_name_p_default">NORMAL</string>
|
||||||
|
<string name="jg_channel_name_p_high">HIGH</string>
|
||||||
|
|
||||||
|
</resources>
|
@ -9,7 +9,7 @@
|
|||||||
* Copyright (c) 2011 ~ 2017 Shenzhen HXHG. All rights reserved.
|
* Copyright (c) 2011 ~ 2017 Shenzhen HXHG. All rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define JPUSH_VERSION_NUMBER 3.1.2
|
#define JPUSH_VERSION_NUMBER 3.2.1
|
||||||
|
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
@ -148,12 +148,6 @@ typedef NS_OPTIONS(NSUInteger, JPAuthorizationOptions) {
|
|||||||
/// @name Setup 启动相关
|
/// @name Setup 启动相关
|
||||||
///----------------------------------------------------
|
///----------------------------------------------------
|
||||||
|
|
||||||
/*!
|
|
||||||
* @abstract 启动SDK
|
|
||||||
*
|
|
||||||
* @discussion 这是旧版本的启动方法, 依赖于 PushConfig.plist 文件. 建议不要使用, 已经过期.
|
|
||||||
*/
|
|
||||||
+ (void)setupWithOption:(NSDictionary *)launchingOption __attribute__((deprecated("JPush 2.1.0 版本已过期")));
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @abstract 启动SDK
|
* @abstract 启动SDK
|
||||||
@ -163,7 +157,6 @@ typedef NS_OPTIONS(NSUInteger, JPAuthorizationOptions) {
|
|||||||
* @param channel 发布渠道. 可选.
|
* @param channel 发布渠道. 可选.
|
||||||
* @param isProduction 是否生产环境. 如果为开发状态,设置为 NO; 如果为生产状态,应改为 YES.
|
* @param isProduction 是否生产环境. 如果为开发状态,设置为 NO; 如果为生产状态,应改为 YES.
|
||||||
* App 证书环境取决于profile provision的配置,此处建议与证书环境保持一致.
|
* App 证书环境取决于profile provision的配置,此处建议与证书环境保持一致.
|
||||||
* @param advertisingIdentifier 广告标识符(IDFA) 如果不需要使用IDFA,传nil.
|
|
||||||
*
|
*
|
||||||
* @discussion 提供SDK启动必须的参数, 来启动 SDK.
|
* @discussion 提供SDK启动必须的参数, 来启动 SDK.
|
||||||
* 此接口必须在 App 启动时调用, 否则 JPush SDK 将无法正常工作.
|
* 此接口必须在 App 启动时调用, 否则 JPush SDK 将无法正常工作.
|
||||||
@ -173,7 +166,19 @@ typedef NS_OPTIONS(NSUInteger, JPAuthorizationOptions) {
|
|||||||
channel:(NSString *)channel
|
channel:(NSString *)channel
|
||||||
apsForProduction:(BOOL)isProduction;
|
apsForProduction:(BOOL)isProduction;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @abstract 启动SDK
|
||||||
|
*
|
||||||
|
* @param launchingOption 启动参数.
|
||||||
|
* @param appKey 一个JPush 应用必须的,唯一的标识. 请参考 JPush 相关说明文档来获取这个标识.
|
||||||
|
* @param channel 发布渠道. 可选.
|
||||||
|
* @param isProduction 是否生产环境. 如果为开发状态,设置为 NO; 如果为生产状态,应改为 YES.
|
||||||
|
* App 证书环境取决于profile provision的配置,此处建议与证书环境保持一致.
|
||||||
|
* @param advertisingId 广告标识符(IDFA) 如果不需要使用IDFA,传nil.
|
||||||
|
*
|
||||||
|
* @discussion 提供SDK启动必须的参数, 来启动 SDK.
|
||||||
|
* 此接口必须在 App 启动时调用, 否则 JPush SDK 将无法正常工作.
|
||||||
|
*/
|
||||||
+ (void)setupWithOption:(NSDictionary *)launchingOption
|
+ (void)setupWithOption:(NSDictionary *)launchingOption
|
||||||
appKey:(NSString *)appKey
|
appKey:(NSString *)appKey
|
||||||
channel:(NSString *)channel
|
channel:(NSString *)channel
|
||||||
@ -385,6 +390,13 @@ typedef NS_OPTIONS(NSUInteger, JPAuthorizationOptions) {
|
|||||||
*/
|
*/
|
||||||
+ (void)registerLbsGeofenceDelegate:(id<JPUSHGeofenceDelegate>)delegate withLaunchOptions:(NSDictionary *)launchOptions;
|
+ (void)registerLbsGeofenceDelegate:(id<JPUSHGeofenceDelegate>)delegate withLaunchOptions:(NSDictionary *)launchOptions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
删除地理围栏
|
||||||
|
|
||||||
|
@param geofenceId 地理围栏id
|
||||||
|
*/
|
||||||
|
+ (void)removeGeofenceWithIdentifier:(NSString *)geofenceId;
|
||||||
|
|
||||||
///----------------------------------------------------
|
///----------------------------------------------------
|
||||||
/// @name Local Notification 本地通知
|
/// @name Local Notification 本地通知
|
||||||
///----------------------------------------------------
|
///----------------------------------------------------
|
||||||
@ -640,7 +652,7 @@ callbackSelector:(SEL)cbSelector
|
|||||||
* @param response 通知响应对象
|
* @param response 通知响应对象
|
||||||
* @param completionHandler
|
* @param completionHandler
|
||||||
*/
|
*/
|
||||||
- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)())completionHandler;
|
- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @brief handle UserNotifications.framework [openSettingsForNotification:]
|
* @brief handle UserNotifications.framework [openSettingsForNotification:]
|
||||||
|
Binary file not shown.
BIN
src/ios/lib/jpush-ios-3.2.1.a
Executable file
BIN
src/ios/lib/jpush-ios-3.2.1.a
Executable file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user