本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
git push
create a new repositroy on the github, we will get the url, thenuse these commands to push them onto the github
create a new repository with command line
touch README.md
git init
git add READM ...
Android Server Push - Urban Airship
Android Server Push Solutions
Android Server Push - Urban Airship
Android Server Push - GCM
Android Server Push - C2DM
Android Server Push - Androidpn
Android Server Push - MQTT
最近在玩salesforce ...
android中的push机制实现:android push notification serfice
APNS 是什么?
APNS (Android Push Notification Service) 是一种在 android 上轻松实现 push notification 的功能的解决方案. 只需申请一个 API Key, 经过简单的步骤即可实现 push notification 的功能. 特点:
快速集成:提供一种比C2DM更加快捷的使用方式,避免各种限制.
无需架设服务器 ...
【转】Appcelerator Cloud Push Notification in iPhone
Push Notification in iOS Using Appcelerator Cloud Service
We can implement Push Notification in iOS using Appcelerator Cloud Service in 5 steps.
Cloud User Login
Retrieve Device Token
Subscribe a Chan ...
【转】Appcelerator Cloud Push Notification in Android
What is Push Notification?
Push notification allows an app to notify you of new messages or events without the need to actually open the application, similar to how a text message will make a sound and ...
xcode 报“"no valid 'aps-environment' entitlement string found for application"”
在用到Push Notification的时候很容易碰到这个问题,解决办法也比较简单,
第一:确认你在apple dev portal里面把相应appid做成类似com.company.appname这样子;
第二:然后在profile配置里面点configure,把sandbox或者product的push打开,
第三:最后把这个profile download下来,装到手机和xcode里面去, ...
[android]adb push/pull
具体步骤如下
1、获得root权限:adb root
2、设置/system为可读写:adb remount
3、将文件复制到PC:adb pull /system/etc/hosts 文件名
4、修改PC机上文件
5、将PC机上文件复制到手机:adb push 文件名 /system/lib
但在第五步时,有的人会报 out of memory的错误
这是因为直接用命令行启动,而没加一个参数造成 ...
javascript中数组常用操作
javascript中数组常用操作
1、push:将参数添加到原数组末尾,并返回数组的长度
var a = [1,2,3,4,5];
var b = a.push(6,7);
操作后结果:
a:[1,2,3,4,5,6,7]
b:7
2、concat:返回一个新数组,是将参数添加到原数组中构成的
var a = [1,2, ...
在Titanium应用中导入Push通知(iOS篇)
让你的Titanium应用也能实现Push的功能吧。
1)申请证书(.p12文件) http://developer.apple.com/devcenter/ios/index.action
Log into Apple's provisioning portal and create a new appid. Take note of your bundle identifier or ...
Android Push Notificatioin Service(Android消息推送)
现在做一个应用,需要Push Notification 给客户端, 想到过用C2DM, 但测试下来,那玩意不太靠谱,效率不高。可是 偶尔的机会发现了,这个网站:http://www.push-notification.org/index.php
首先,需要声明,现在国内很多Android的APP,都有Push Notification的功能,但大多是Pull方式,也就是客户端主动向服务器 ...
android lanucher 桌面默认添加小控件
http://www.eoeandroid.com/thread-51794-1-1.html
这里有讨论,但是我按照他的做了之后还是没有效果
其实还差了一步
就是要把lanucher也要push到system/app目录下。
iPhone开发基础学习 在程序里设置Push(收藏)
iPhone开发基础学习 在程序里设置Push
iPhone开发基础学习 在程序里设置Push是本文要介绍的内容,最近做项目有一个需求,要在程序得系统设置里进行push的设置。在网上搜了几天资料没找着啥。今天忽然心血来潮跟踪系统注册push时得代码,居然发现有可行得解决方法,思路如下:
1、在iphone得framework里的UIApplication.h中有以下函数:
@interface ...