One important thing to note is that the build.json file is optional and it is very likely you do not need one.
{
"manifest" :
{
"minSdkVersion" : 18,
"targetSdkVersion" : 21,
"debuggable" : false,
"removePermissions" : "WRITE_EXTERNAL_STORAGE, ACCESS_WIFI_STATE",
"homeScreen":false,
"pathPattern":".*\\.jpg,.*\\.txt"
}
}
i am trying to build a launcher ,it says create a build.json file so when i try to put these
{
"manifest" :
{
"minSdkVersion" : 18,
"targetSdkVersion" : 21,
"debuggable" : false,
"removePermissions" : "WRITE_EXTERNAL_STORAGE, ACCESS_WIFI_STATE",
"homeScreen":false,
"pathPattern":".*\\.jpg,.*\\.txt"
}
}
code at the top of the other rest javascript code and try to launch it is giving me error, and please help me by uploading the sample of build.json ,i want to see where to add that above mentioned code in my javascript app
please help.........
If you are not using the WiFi editor, the easiest way is to use a simple text editor.
{
"manifest" :
{
"minSdkVersion" : 18,
"targetSdkVersion" : 21,
"debuggable" : false,
"removePermissions" : "WRITE_EXTERNAL_STORAGE, ACCESS_WIFI_STATE",
"homeScreen":false,
"pathPattern":".*\\.jpg,.*\\.txt"
}
My example:
/sdcard/DroidScript/Launcher
In THIS folder create a new text file named 'build.json' and place your configuration there.
:-)
Chris