Skip to content

Instantly share code, notes, and snippets.

@mager
Created February 10, 2012 20:46
Show Gist options
  • Save mager/1792724 to your computer and use it in GitHub Desktop.
Save mager/1792724 to your computer and use it in GitHub Desktop.
Spotify Apps API - Creating your manifest.json file
{
"AppDescription": {
"en": "A tutorial app for Spotify Apps API"
},
"AppIcon": {
"36x18": "tutorial.png"
},
"AppName": {
"en": "Spotify Sandbox"
},
"BundleIdentifier": "spotify-apps-sandbox",
"BundleType": "Application",
"BundleVersion": "0.1",
"DefaultTabs": [
{
"arguments": "home_tab",
"title": {
"en": "Home"
}
},
{
"arguments": "secondary_tab",
"title": {
"en": "Secondary Tab"
}
}
],
"RequiredInterface": 1,
"RequiredPermissions": [
"http://api.twitter.com",
"https://graph.facebook.com",
"https://gist.github.com/"
],
"SupportedLanguages": [
"en"
],
"VendorIdentifier": "co.mager"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment