Compare commits

...

22 Commits

Author SHA1 Message Date
darkterrorooo
7cb3e22e14 Merge pull request #100 from darkterrorooo/master
fix #99 android jpush.openNotification 事件调用两次
2015-12-09 18:42:35 +08:00
darkterrorooo
a3ad96f786 fix tortuous 2015-12-09 18:27:08 +08:00
darkterrorooo
42d64ca2f0 fix android openNotification twice 2015-12-09 17:55:10 +08:00
darkterrorooo
0af2f60dbb Merge pull request #98 from darkterrorooo/master
fix doc
2015-12-01 16:18:04 +08:00
darkterrorooo
0da9f0ed26 fix doc 2015-12-01 16:15:58 +08:00
darkterrorooo
f3bc83d97b fix doc 2015-12-01 16:14:52 +08:00
darkterrorooo
8b674bb777 fix doc 2015-12-01 16:13:51 +08:00
darkterrorooo
181ab80dab Merge pull request #97 from darkterrorooo/master
修正文档,在添加插件时填写 APP KEY
2015-12-01 16:11:45 +08:00
darkterrorooo
de59d7919b fix doc 2015-12-01 16:06:41 +08:00
darkterrorooo
1102ad3a57 fix doc 2015-12-01 16:05:37 +08:00
darkterrorooo
a8e4060b4d fix doc 2015-12-01 16:03:08 +08:00
darkterrorooo
3b234f3101 修复抽离了APP KEY后的文档 2015-12-01 15:40:16 +08:00
darkterrorooo
7c580b4eaf 修复抽离了APP KEY后的文档 2015-12-01 15:30:41 +08:00
darkterrorooo
af267eda94 修复抽离了APP KEY后的文档 2015-12-01 15:28:39 +08:00
darkterrorooo
d93b35611b 修复抽离了APP KEY后的文档 2015-12-01 15:27:45 +08:00
darkterrorooo
d94ccfb8d8 修复抽离了APP KEY后的文档 2015-12-01 15:24:31 +08:00
darkterrorooo
b24b7064ba 修复抽离了APP KEY后的文档 2015-12-01 15:18:40 +08:00
darkterrorooo
f12e7a35d0 Merge pull request #65 from wgjtyu/master
抽离API_KEY的配置
2015-12-01 12:15:55 +08:00
darkterrorooo
37c1d308eb Merge pull request #96 from darkterrorooo/master
升级iOS, Android到最新的SDK
2015-11-26 15:38:08 +08:00
George
138fde1587 Merge remote-tracking branch 'jpush/master' into test 2015-09-10 20:13:45 +08:00
George
3196aeff72 Android端清除指定消息 2015-08-06 17:51:03 +08:00
George
ca2e52fe54 抽离API_KEY的配置 2015-08-06 11:08:28 +08:00
8 changed files with 120 additions and 42 deletions

View File

@@ -19,30 +19,32 @@ l## JPush PhoneGap Plugin ##
###Cordova CLI/Phonegap 安装 Android & iOS ###Cordova CLI/Phonegap 安装 Android & iOS
3. 使用git命令将jpush phonegap插件下载的本地,将这个目录标记为`$JPUSH_PLUGIN_DIR` 1). 安装JPush PhoneGap Plugin。 有两种方法。
git clone https://github.com/jpush/jpush-phonegap-plugin.git 方法一: 在线安装
cordova plugin add https://github.com/jpush/jpush-phonegap-plugin.git --variable API_KEY=your_jpush_appkey
方法二:下载到本地再安装
使用git命令将jpush phonegap插件下载的本地,将这个目录标记为`$JPUSH_PLUGIN_DIR`
4.`$JPUSH_PLUGIN_DIR/plugin.xml`文件中的AppKey替换为在Portal上注册该应用的的Key,例如9fed5bcb7b9b87413678c407 git clone https://github.com/jpush/jpush-phonegap-plugin.git
cordova plugin add $JPUSH_PLUGIN_DIR --variable API_KEY=your_jpush_appkey
<meta-data android:name="JPUSH_APPKEY" android:value="your appkey"/>
4. 打开`$JPUSH_PLUGIN_DIR/src/ios/PushConfig.plist`文件将文件中的`7d431e42dfa6a6d693ac2d04`替换为在Portal上注册该应用的的Key,例如9fed5bcb7b9b87413678c407
5.`$JPUSH_PLUGIN_DIR/src/android/JPushPlugin.java` 文件`import your.package.name.R`替换为在Portal上注册该应用的包名例如(com.thi.pushtest)
6. cordova cli 添加jpush phonegap插件和依赖的device插件:
cordova plugin add $JPUSH_PLUGIN_DIR 2). 安装org.apache.cordova.device
cordova plugin add org.apache.cordova.device
cordova plugin add org.apache.cordova.device
7. 在js中调用函数,初始化jpush sdk
3). 在js中调用函数,初始化jpush sdk
window.plugins.jPushPlugin.init();
//由于phonegap插件采用了Lazy load的特性 所以这里建议在js文件能执行的最开始就加
window.plugins.jPushPlugin.init();
//由于phonegap插件采用了Lazy load的特性 所以这里建议在js文件能执行的最开始就加
### Android 手工安装 ### Android 手工安装

View File

@@ -54,13 +54,13 @@
} }
var onReceiveNotification = function(event){ var onReceiveNotification = function(event){
try{ try{
var alert var alertContent
if(device.platform == "Android"){ if(device.platform == "Android"){
alert = window.plugins.jPushPlugin.receiveNotification.alert; alertContent = window.plugins.jPushPlugin.receiveNotification.alert;
}else{ }else{
alert = event.aps.alert; alertContent = event.aps.alert;
} }
$("#notificationResult").html(alert); $("#notificationResult").html(alertContent);
} }
catch(exeption){ catch(exeption){

View File

@@ -10,12 +10,14 @@
<keywords>JPush,push</keywords> <keywords>JPush,push</keywords>
<license>Apache 2.0 License</license> <license>Apache 2.0 License</license>
<preference name="API_KEY" />
<engines> <engines>
<engine name="cordova" version=">=3.0"/> <engine name="cordova" version=">=3.0"/>
</engines> </engines>
<js-module src="www/JPushPlugin.js" name="JPushPlugin"> <js-module src="www/JPushPlugin.js" name="JPushPlugin">
<clobbers target="window.plugins.jPushPlugin"/> <clobbers target="jPushPlugin"/>
</js-module> </js-module>
<platform name="ios"> <platform name="ios">
@@ -42,11 +44,18 @@
<framework src="UIKit.framework" weak="true" /> <framework src="UIKit.framework" weak="true" />
<framework src="Security.framework" weak="true" /> <framework src="Security.framework" weak="true" />
<framework src="libz.dylib" weak="true" /> <framework src="libz.dylib" weak="true" />
<config-file target="*PushConfig.plist" parent="APP_KEY">
<string>$API_KEY</string>
</config-file>
</platform> </platform>
<!-- android --> <!-- android -->
<platform name="android"> <platform name="android">
<hook type="after_plugin_add" src="scripts/android-install.js" />
<hook type="after_plugin_install" src="scripts/android-install.js" />
<hook type="before_plugin_rm" src="scripts/android-install.js" />
<hook type="before_plugin_uninstall" src="scripts/android-install.js" />
<config-file target="res/xml/config.xml" parent="/*"> <config-file target="res/xml/config.xml" parent="/*">
<feature name="JPushPlugin"> <feature name="JPushPlugin">
@@ -152,16 +161,16 @@
<receiver android:name="cn.jpush.android.service.AlarmReceiver"/> <receiver android:name="cn.jpush.android.service.AlarmReceiver"/>
<!-- Required . Enable it you can get statistics data with channel --> <!-- Required . Enable it you can get statistics data with channel -->
<meta-data android:name="JPUSH_CHANNEL" android:value="developer-default"/> <meta-data android:name="JPUSH_CHANNEL" android:value="developer-default"/>
<meta-data android:name="JPUSH_APPKEY" android:value="your appkey"/> <meta-data android:name="JPUSH_APPKEY" android:value="$API_KEY"/>
</config-file> </config-file>
<source-file src="src/android/jpush-android-2.0.5.jar" target-dir="libs"/> <source-file src="src/android/jpush-android-2.0.5.jar" target-dir="libs"/>
<source-file src="src/android/armeabi/libjpush205.so" target-dir="libs/armeabi"/> <source-file src="src/android/armeabi/libjpush205.so" target-dir="libs/armeabi"/>
<source-file src="src/android/armeabi-v7a/libjpush205.so" target-dir="libs/armeabi-v7a"/> <source-file src="src/android/armeabi-v7a/libjpush205.so" target-dir="libs/armeabi-v7a"/>
<source-file src="src/android/arm64-v8a/libjpush205.so" target-dir="libs/arm64-v8a"/> <source-file src="src/android/arm64-v8a/libjpush205.so" target-dir="libs/arm64-v8a"/>
<source-file src="src/android/JPushPlugin.java" target-dir="src/cn/jpush/phonegap"/> <!--<source-file src="src/android/JPushPlugin.java" target-dir="src/cn/jpush/phonegap"/>-->
<source-file src="src/android/MyReceiver.java" target-dir="src/cn/jpush/phonegap"/> <source-file src="src/android/MyReceiver.java" target-dir="src/cn/jpush/phonegap"/>
<source-file src="src/android/test_notification_layout.xml" target-dir="res/layout"/> <source-file src="src/android/test_notification_layout.xml" target-dir="res/layout"/>
<source-file src="src/android/jpush_notification_icon.png" target-dir="res/drawable"/> <source-file src="src/android/jpush_notification_icon.png" target-dir="res/drawable"/>
</platform> </platform>
</plugin> </plugin>

View File

@@ -0,0 +1,48 @@
#!/usr/bin/env node
module.exports = function (context) {
var path = context.requireCordovaModule('path'),
fs = context.requireCordovaModule('fs'),
shell = context.requireCordovaModule('shelljs'),
projectRoot = context.opts.projectRoot,
ConfigParser = context.requireCordovaModule('cordova-lib/src/configparser/ConfigParser'),
config = new ConfigParser(path.join(context.opts.projectRoot, "config.xml")),
packageName = config.android_packageName() || config.packageName();
console.info("Running android-install.Hook: " + context.hook + ", Package: " + packageName + ", Path: " + projectRoot + ".");
if (!packageName) {
console.error("Package name could not be found!");
return ;
}
// android platform available?
if (context.opts.cordova.platforms.indexOf("android") === -1) {
console.info("Android platform has not been added.");
return ;
}
var targetDir = path.join(projectRoot, "platforms", "android", "src", "cn", "jpush", "phonegap");
targetFile = path.join(targetDir, "JPushPlugin.java");
console.log(targetDir);
if (['after_plugin_add', 'after_plugin_install', 'after_platform_add'].indexOf(context.hook) === -1) {
// remove it?
try {
fs.unlinkSync(targetFile);
} catch (err) {}
} else {
// create directory
shell.mkdir('-p', targetDir);
// sync the content
fs.readFile(path.join(context.opts.plugin.dir, 'src', 'android', 'JPushPlugin.java'), {encoding: 'utf-8'}, function (err, data) {
if (err) {
throw err;
}
data = data.replace(/^import __PACKAGE_NAME__.R;/m, 'import ' + packageName + '.R;');
fs.writeFileSync(targetFile, data);
});
}
};

View File

@@ -19,13 +19,15 @@ import org.json.JSONException;
import org.json.JSONObject; import org.json.JSONObject;
import java.util.Map.Entry; import java.util.Map.Entry;
import your.package.name.R; import __PACKAGE_NAME__.R;
import cn.jpush.android.api.BasicPushNotificationBuilder; import cn.jpush.android.api.BasicPushNotificationBuilder;
import cn.jpush.android.api.CustomPushNotificationBuilder; import cn.jpush.android.api.CustomPushNotificationBuilder;
import cn.jpush.android.api.JPushInterface; import cn.jpush.android.api.JPushInterface;
import cn.jpush.android.data.JPushLocalNotification; import cn.jpush.android.data.JPushLocalNotification;
import cn.jpush.android.api.TagAliasCallback; import cn.jpush.android.api.TagAliasCallback;
import android.util.Log;
public class JPushPlugin extends CordovaPlugin { public class JPushPlugin extends CordovaPlugin {
private final static List<String> methodList = private final static List<String> methodList =
@@ -46,6 +48,7 @@ public class JPushPlugin extends CordovaPlugin {
"setLatestNotificationNum", "setLatestNotificationNum",
"setPushTime", "setPushTime",
"clearAllNotification", "clearAllNotification",
"clearNotificationById",
"addLocalNotification", "addLocalNotification",
"removeLocalNotification", "removeLocalNotification",
"clearLocalNotifications", "clearLocalNotifications",
@@ -55,7 +58,9 @@ public class JPushPlugin extends CordovaPlugin {
private ExecutorService threadPool = Executors.newFixedThreadPool(1); private ExecutorService threadPool = Executors.newFixedThreadPool(1);
private static JPushPlugin instance; private static JPushPlugin instance;
private static String TAG = "Client JPushPlugin";
public static boolean bOpenNotificationAlert = true;
public static String notificationAlert; public static String notificationAlert;
public static Map<String, Object> notificationExtras=new HashMap<String, Object>(); public static Map<String, Object> notificationExtras=new HashMap<String, Object>();
public static String openNotificationAlert; public static String openNotificationAlert;
@@ -72,12 +77,19 @@ public class JPushPlugin extends CordovaPlugin {
//JPushPlugin.notificationAlert = alert; //JPushPlugin.notificationAlert = alert;
//JPushPlugin.notificationExtras = extras; //JPushPlugin.notificationExtras = extras;
if(JPushPlugin.openNotificationAlert != null){
JPushPlugin.transmitOpen(JPushPlugin.openNotificationAlert, JPushPlugin.openNotificationExtras); if(JPushPlugin.bOpenNotificationAlert){
}
if(JPushPlugin.notificationAlert!=null){ JPushPlugin.bOpenNotificationAlert = false;
JPushPlugin.transmitReceive(JPushPlugin.notificationAlert, JPushPlugin.notificationExtras); if(JPushPlugin.openNotificationAlert != null){
} JPushPlugin.transmitOpen(JPushPlugin.openNotificationAlert, JPushPlugin.openNotificationExtras);
}
if(JPushPlugin.notificationAlert!=null){
JPushPlugin.transmitReceive(JPushPlugin.notificationAlert, JPushPlugin.notificationExtras);
}
}
//JPushInterface.init(cordova.getActivity().getApplicationContext()); //JPushInterface.init(cordova.getActivity().getApplicationContext());
} }
@@ -225,7 +237,7 @@ public class JPushPlugin extends CordovaPlugin {
JSONArray.class, CallbackContext.class); JSONArray.class, CallbackContext.class);
method.invoke(JPushPlugin.this, data, callbackContext); method.invoke(JPushPlugin.this, data, callbackContext);
} catch (Exception e) { } catch (Exception e) {
System.out.println(e.toString()); Log.e(TAG,e.toString());
} }
} }
}); });

View File

@@ -48,7 +48,7 @@ public class MyReceiver extends BroadcastReceiver {
Intent launch = context.getPackageManager().getLaunchIntentForPackage(context.getPackageName()); Intent launch = context.getPackageManager().getLaunchIntentForPackage(context.getPackageName());
launch.addCategory(Intent.CATEGORY_LAUNCHER); launch.addCategory(Intent.CATEGORY_LAUNCHER);
launch.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_SINGLE_TOP); launch.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_SINGLE_TOP);
JPushPlugin.bOpenNotificationAlert = true;
JPushPlugin.openNotificationAlert = alert; JPushPlugin.openNotificationAlert = alert;
JPushPlugin.openNotificationExtras = extras; JPushPlugin.openNotificationExtras = extras;

View File

@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>APP_KEY</key> <key>APP_KEY</key>
<string>7d431e42dfa6a6d693ac2d04</string> <string></string>
<key>CHANNEL</key> <key>CHANNEL</key>
<string>Subscription</string> <string>Subscription</string>
</dict> </dict>
</plist> </plist>

View File

@@ -253,6 +253,13 @@ JPushPlugin.prototype.clearAllNotification = function(){
} }
} }
JPushPlugin.prototype.clearNotificationById = function(notificationId){
if(device.platform == "Android") {
data=[]
this.call_native("clearNotificationById",[notificationId],null);
}
}
JPushPlugin.prototype.setLatestNotificationNum = function(num){ JPushPlugin.prototype.setLatestNotificationNum = function(num){
if(device.platform == "Android") { if(device.platform == "Android") {
this.call_native("setLatestNotificationNum",[num],null); this.call_native("setLatestNotificationNum",[num],null);