tns-template-master-detail-kinvey-ts
Version:
Master-detail interface to display collection of items from Kinvey and inspect and edit selected item properties.
16 lines (12 loc) • 628 B
text/typescript
import { init } from "kinvey-nativescript-sdk";
import { Config } from "./config";
/* ***********************************************************
* The {N} Kinvey plugin initialization is explained in the plugin readme here:
* http://devcenter.kinvey.com/nativescript/guides/getting-started#ConfigureYourApp
* In this template, Kinvey is set up with a custom existing project, so that
* You can build and run this template without creating your own Kinvey project.
*************************************************************/
init({
appKey: Config.kinveyAppKey,
appSecret: Config.kinveyAppSecret
});