This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installation and some details | |
================================================================================== | |
If android is installed with Android Studio then the path to sdk is at | |
` ~/Android/sdk/ ` | |
================================================================================== | |
## NodeJS : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
var express = require('express'); | |
var app = express(); | |
app.all('*', function(req, res, next) { | |
res.header("Access-Control-Allow-Origin", "*"); | |
res.header("Access-Control-Allow-Headers", "X-Requested-With"); | |
next(); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node bin/kii-servercode.js deploy-file --file path/to/myServerCode.js --site us --app-id <AppID> --app-key <AppKey> --client-id <ClientID> --client-secret <ClientSecret> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewWillAppear:(BOOL)animated | |
{ | |
// View defaults to full size. If you want to customize the view's size, or its subviews (e.g. webView), | |
// you can do so here. | |
//Original | |
//[super viewWillAppear:animated]; | |
//Fix for Cordova on iOS 7 | |
//Lower screen 20px on ios 7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ref: | |
1. http://cordova.apache.org/docs/en/3.4.0/guide_platforms_ios_tools.md.html#iOS%20Command-line%20Tools | |
2. http://cordova.apache.org/docs/en/3.4.0/plugin_ref_plugman.md.html#Using%20Plugman%20to%20Manage%20Plugins | |
=================================================================== | |
//From inside the project package | |
./create path/to/preoject/folder com.package.name ProjectName | |
=================================================================== | |
//From inside the Cordova project folder | |
====================================================================================== | |
plugman install --platform ios --project . --plugin org.apache.cordova.battery-status |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//The options object must have set, changeHash:true, as in the first example | |
//1 | |
$.mobile.pageContainer.pagecontainer("change", "pageID", { reload:true, transition:'flow', changeHash:true }); | |
//alternates | |
//2 | |
$(":mobile-pagecontainer").pagecontainer("change", "target", { options }); | |
//3 | |
$("body").pagecontainer("change", "target", { options }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewDidLoad | |
{ | |
//hide backbutton | |
[self.navigationItem setHidesBackButton:YES]; | |
//hide the complete navigation bar | |
[self.navigationController setNavigationBarHidden:YES]; | |
//hide tool bar | |
self.navigationController.toolbarHidden=YES; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('social/util', | |
['dependentLib'], | |
function(){ | |
var myUtilLib = _.extend({ | |
init: function(){ | |
this.trigger("myUtilLib:init", "init message"); | |
}, | |
destroy: function(){ | |
this.trigger("myUtilLib:destroy", "destroy message"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"> | |
<plist version="1.0"> | |
<dict> | |
<key>items</key> | |
<array> | |
<dict> | |
<key>assets</key> | |
<array> | |
<dict> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void printFaceBookHash(String packageName){ | |
String mAppPackage = packageName; | |
try { | |
PackageInfo info = getPackageManager().getPackageInfo( | |
mAppPackage, PackageManager.GET_SIGNATURES); | |
for (Signature signature : info.signatures) { | |
MessageDigest md = MessageDigest.getInstance("SHA"); | |
md.update(signature.toByteArray()); | |
Log.d("KeyHash:", "===================================================="); | |
Log.d("KeyHash:", Base64.encodeToString(md.digest(), Base64.DEFAULT)); |
NewerOlder