Appcelerator Titanium Alloy JPUSH Push Notification Module Android Update – Local Notifications – Custom Layout

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineThis is an update to the ANDROID Appcelerator Titanium Alloy JPUSH Push Notification Module You can find the main post about these modules here: http://dieskim.me/2015/04/04/appcelerator-titanium-alloy-jpush-push-notification-module-ios-and-android-china-push-notification-non-gcm/ I have added two new functions – Local Notification, to enable easy local notification as natively provided…

Titanium Alloy Nice Swipe Menu Functions

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLine// open containerWindow $.containerWindow.open(); // Listen for android back button and close all Views on top that might be displayed $.containerWindow.addEventListener('android:back', closeNavigationView); // add app EventListener to openCloseMenu Ti.App.addEventListener('app:openCloseMenu', function(e) {    openDrawer(); }); // START FUNCTION – handleSwipe function…

Appcelerator Titanium Alloy JPUSH Push Notification Module – iOS and Android, China Push Notification- NON GCM

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineLatest Appcelerator Titanium Alloy JPUSH Push Notification Module – iOS and Android, China Push Notification- NON GCM As you may know Chinese Android phones do not ship with the Google Play store – thus Google Cloud Messaging does not work.…

Titanium Alloy iOS Android Modules: Count.ly Analytics, Push Notifications – Events, User Profiles, Messaging – Google Analytics Alternative

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineLatest Titanium Count.ly Modules with Messaging Support: Alloy iOS Android Modules: Count.ly Analytics, Push Notifications – Events, User Profiles, Messaging – Google Analytics Alternative. Countly is an innovative, real-time, open source mobile analytics application. It collects data from mobile phones, and…

Titanium Alloy iOS Android Module: Custom Alert Module to replace Titanium.UI.AlertDialog

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineBelow is the code I created for a Custom Alert Module for Titanium Alloy that runs on both iOS and Android – it is used as a replacement for the Titanium.UI.AlertDialog For this module to work in Android you need to…

Appcelerator Titanium Alloy JPUSH 模块 – 安卓推送模块 - 国内可用的安卓推送

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLine你好, 新版本 》 http://kiteplans.info/2015/04/04/appcelerator-titanium-alloy-jpush-push-notification-module-ios-and-android-china-push-notification-non-gcm/ 你们都知道国内安卓的手机几乎不支持谷歌的服务,所以GCM不可用。 对于国内的推送,建议用JPUSH(极光推送)。 我做了很多研究,没有找到任何好的Titanium Alloy JPUSH 模块。我在这个博客上找到了一个几乎不能用的,借鉴了一些,然后写了自己的模块。 所以这是我自己为Titanium Alloy写的JPUSH模块,该模块已经测试,能够直接使用。 因为写出该模块花费了不少精力,所以你需要支付一定费用才能下载使用。 ****本人不提供任何安装或使用支持**** 点击下方来付款并下载Titanium Alloy JPUSH 模块 你支付后会收到一封邮件,邮件中有具体下载链接。 ##安装说明 1. 将已下载的zip放在你APP的root中,build app——Titanium 会自己安装 2. 将这一行添加到tiapp.xml <module platform="android">com.yeshcp.jpush</module> 3. 将这一行添加到tiapp.xml来避免安卓crash bug <property name="ti.android.bug2373.finishfalseroot" type="bool">true</property> ## app 设置 4. 你需要把J push给你的App ID放在 app/modules/android/com.yeshcp.jpush/VERSION/timodule.xml <meta-data android:name="JPUSH_APPKEY"…

Module: Appcelerator Titanium Alloy JPUSH Push Notification Module – Android, China Push Notification- NON GCM

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineUPDATED VERSION: Appcelerator Titanium Alloy JPUSH Push Notification Module – iOS and Android, China Push Notification- NON GCM Hi, As you may know Chinese Android phones do not ship with the Google Play store – thus Google Cloud Messaging does not…

Bug: Embed font TTF not displaying Android 4.4 Kitkat , 4.3 JellyBean – FIXED use OTF

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineThere is a Bug in Android  4.4 KitKat when using embedded fonts, it does not display the TTF version of the file. The simple fix is to simply use the OTF version of the font. You can use the site…