{
    "type": "native",  
    "platforms" : [ 
        { 
            "applicationKey": {    
                "version":"1.0.0",
                "clientPlatform":"android",
                "packageName":"com.starter.app"
            },
            "displayName":"StarterApp",
  	        "scopeElementMapping": {
    		    "push.mobileclient": "",
		        "liveupdate.mobileclient": ""
  	        }
        }
    ],
    "services": [
        {
            "name" : "push",
            "settings": {
                "fcm": {
                    "apiKey": "",
                    "senderId": "",
                    "google_services_path": "<path to google_services.json>"
                },
                "apns": {
                    "certificate": "<path to p12 certificate>",
                    "isSandBox": true,
                    "password": ""
                }
            },
            "tags": [
                {
                    "name": "Tag1",
                    "description": "Abt Tag1"
                },
                {
                    "name": "Tag2",
                    "description": "Abt Tag2"
                }
            ]
            
        },
        {
            "name" : "liveupdate",          
	        "schema": {
               "features": {
		            "enableButton": {
                        "name": "enableButton",
                        "internalId": "enableButton",
                        "description": "Show the feature button",
                        "defaultValue": false
                   }
		        },
               "properties": {
		            "titleColour": {
		                "name": "titleColour",
		                "internalId": "titleColour",
		                "description": "Change colour of the title",
                        "defaultValue": "black"
                   }
		        }
	        }
        },
        {
            "name" : "analytics"
        }
    ],
    "confidentialClients": [{
        "id" : "SampleClient",
        "secret" : "12345",
        "allowedScope" : "clients:read-public clients:read-protected update",
        "displayName" : "SampleClient"
      }
    ],
    "adapters": [{
        "path": "<path to adapter>",
        "adapter" : "myAdapter",
        "connectivity" : {
          "http" : {
            "connectionTimeoutInMilliseconds" : 30000,
            "cookiePolicy" : "BEST_MATCH",
            "dtdvalidationEnabled" : false,
            "maxConcurrentConnectionsPerNode" : 49,
            "maxRedirects" : 11,
            "port" : 444,
            "protocol" : "http",
            "socketTimeoutInMilliseconds" : 30002
          }
        },
        "properties" : {
          "database" : "test-db"
        }
    }],
    "backendServices" : [
        {
            "service": "resorts",
            "baseUrl":"http://mybluemix.net/resorts",
            "auth" : {
                "type" : "basic",
                "credential" : {
                    "username" : "testuser",
                    "password" : "testpass"
                }
            },
            "ConnectionProperties" : {
                "maxConnetions" : "50",
                "connectionTimeoutInMilliseconds" : "20000",
                "socketTimeoutInMilliseconds" : "20000"
            }
        }
    ],    
    "appPublish": {
        "android": {
            "release": {
                "keystore": "dab-android.keystore",
            	"storePassword": "",
            	"alias": "dab-key",
            	"password" : ""
            }
    	}
    }    
}