Skip to main content
Version: 7.3.0

Project Configuration (project.json)

Project.json includes your application and workspace configuration, which is located under the config folder of your project.

Info

Info section allows you to change the meta information of your application.

"info": {
"name": "Smartface Demo",
"company": "Smartface User",
"webSite": "http://www.smartface.io",
"version": "1.0.0",
"runtimeVersion": "1059",
"description": ""
}

Config

You can set project configuration for Cache Size, Orientation and Debug Logging

"config": {
"cache": {
"size": 50
},
"debug": {
"logs": false
},
"orientation": {
"portrait": true,
"upsideDown": false,
"landScapeLeft": false,
"landScapeRight": false
}
}

API

You can set API keys for Facebook, Twitter, and Google services.

"api": {
"facebook": {
"appUID": "",
"appSecret": ""
},
"twitter": {
"consumerKey": "",
"consumerSecret": ""
},
"googleMaps": {
"androidKey": "01u81e3cP5lidl1HRJ55hoBH0N5_Kmlvku4EIYg",
"iosKey": ""
},
"adMob": {
"publisherId": ""
},
"googleCloudMessaging": {
"senderID": ""
},
"googlePlayServices": {
"inAppPurchaseProductKey": ""
}
}

Build

In this section, you can set project paths for scripts, images, and assets. Also you can enable/disable plugins and set output file directories for local binaries.

Please note: Only plugins developed by Smartface will be delivered in the on-device emulators. Custom plugins will not work during the testing with the on-device emulator. They will only work only in published apps or you can contact the Smartface Team for custom emulators.

"build": {
"input": {
"ios": {
"scripts": "scripts",
"images": "images/iOS",
"assets": "assets",
"infoPlist": "config/iOS/Info.plist",
"urlIdentifier": "",
"urlSchemes": "",
"plugins": {
"facebookios": {
"url": "https://smartfacecdn.blob.core.windows.net/smartface-bin/plugins/Facebook/iOS/1.0.0/FacebookiOS.zip",
"path": "plugins/iOS/FacebookiOS.zip",
"active": false
},
"googleanalyticsplugin-ios": {
"url": "https://smartfacecdn.blob.core.windows.net/smartface-bin/plugins/GoogleAnalytics/iOS/1.0.0/GoogleAnalyticsiOS.zip",
"path": "plugins/iOS/GoogleAnalyticsiOS.zip",
"active": false
},
"admob-ios": {
"url": "https://smartfacecdn.blob.core.windows.net/smartface-bin/plugins/AdMob/iOS/1.0.0/AdmobiOS.zip",
"path": "plugins/iOS/AdmobiOS.zip",
"active": true
},
"codereaderios": {
"url": "https://smartfacecdn.blob.core.windows.net/smartface-bin/plugins/CodeReader/iOS/1.0.0/CodeReaderiOS.zip",
"path": "plugins/iOS/CodeReaderiOS.zip",
"active": false
}
}
},
"android": {
"scripts": "scripts",
"images": "images/Android",
"assets": "assets",
"manifest": "config/Android/AndroidManifest.xml",
"packageProfiles": "config/Android/PackageProfiles.xml",
"sign": {
"keystoreFile": "config/Android/smfdefault.keystore",
"keystorePass": "smartface",
"aliasName": "smartface",
"keyPass": "smartface"
},
"plugins": {
"facebook": {
"url": "https://smartfacecdn.blob.core.windows.net/smartface-bin/plugins/Facebook/Android/1.0.0/FacebookAndroid.zip",
"path": "plugins/Android/FacebookAndroid.zip",
"active": false
},
"googleanalytics": {
"url": "https://smartfacecdn.blob.core.windows.net/smartface-bin/plugins/GoogleAnalytics/Android/1.0.0/GoogleAnalyticsAndroid.zip",
"path": "plugins/Android/GoogleAnalyticsAndroid.zip",
"active": false
},
"smfimagecode": {
"url": "https://smartfacecdn.blob.core.windows.net/smartface-bin/plugins/CodeReader/Android/1.0.0/CodeReaderAndroid.zip",
"path": "plugins/Android/CodeReaderAndroid.zip",
"active": false
},
"smfparse": {
"url": "https://smartfacecdn.blob.core.windows.net/smartface-bin/plugins/Parse/Android/1.0.0/ParseAndroid.zip",
"path": "plugins/Android/ParseAndroid.zip",
"active": false
}
}
},
"keys": {
"project3DesKey": "",
"projectEncryptedKey": ""
}
},
"output": {
"ios": {
"outputFolder": "output/iOS",
"bundleIdentifier": "io.smartface.demo"
},
"android": {
"outputFolder": "output/Android",
"packageName": "io.smartface.demo"
}
},
"tempFolder": "output/.tmp"
}