Master commit one Master commit two Master commit three
Version-2 one Version-2 two
feature-v-2 one feature-v-2 two feature-v-2 three
A simple todo app backed by Appacitive Cloud Platform and uses Appacitive .Net SDK for managing application data.
This app demonstrates Data Store and Users features provided by the Appacitive .Net SDK.
To execute this app you will require Visual Studio 2012, Windows Phone SDK and Appacitive Account.
If you don't have an Appacitive Account, sign up for a free account today.
To model your application backend on Appacitive Platform, please watch this video. If you already have the backend ready with you; you can jump to the next step.
You can download the source code for this sample Todo App from https://github.com/apalsapure/wp-todoapp/archive/master.zip.
Once you have the source code, launch the solution and open the App.xaml.cs and inside Application_Launching
replace the {{App Id}}
and {{API Key}}
by your Appacitive Application Id and API Key.
// Code to execute when the application is launching (eg, from Start)
private void Application_Launching(object sender, LaunchingEventArgs e)
{
//Initializing Appacitive .Net SDK
Appacitive.Sdk.AppContext.Initialize("{{App Id}}",
"{{API Key}}",
Appacitive.Sdk.Environment.Sandbox);
}
To get these details, open your app on Appacitive Portal. On the app's dashboard you will find both API Key and Application Id as shown in following image.
For this sample to work properly use Master API Key. Do not use Client API Key, Client API keys get evaluated against ACL, and if you don't have any ACL defined, then all API calls will fail with Access deined error.
Once your done, run the application.
If you want to build your own Todo App, please visit http://devcenter.appacitive.com/windows/samples/todo/. This tutorial will explain each and every step required to build this sample app.