@corinnekrych alias Athos
alias Aramis
@sebi2706
scm.blanc@gmail.com
https://github.com/sebastienblanc
cordova create greach
cordova platform add ios
cordova plugin add ../../aerogear-pushplugin-cordova
cordova build
Send push notifications to any device, regardless of platform or network (APNs, GCM, SimplePush).
Persistence abstraction
Store in JavaScript
// Create an Empty DataManager
var dm = AeroGear.DataManager(),
// Create a new Crypto object to use
agcrypto = AeroGear.Crypto(),
idb;
// Add an WebSQL store
dm.add({
name: "idb",
type: "WebSQL",
settings: {
auto: true,
// New crypto options for DataManager
crypto: {
agcrypto: agcrypto,
options: {
key: "password"
}
}
}
});
idb = dm.stores.idb;
idb.save({id:12,creditCard:"45454545454"});
;