android - Error when adding dependecy to a trigger.io native plugin -


i developing native plugin , depends on existing library (which built in maven not sure if makes difference). added plugin libs folder , updated inspector project. in adt can see library being added forge inspector plugin in libs folder not added modules build path.

i figured caused library being absent build_steps.json file added dependency file:

[

{     "do": {         "android_add_permission": {             "permission": "android.permission.write_external_storage"         }     } }, {     "do": {         "include_dependencies": {             "leveldb-0.6-snapshot": {                 "hash": "8e7bd9547206ecca974530109983fc8d"             }         }     } } 

]

after adding dependency updated inspector project , got following error:

applying build steps failed, check build steps , re-update inspector: [errno 2] no such file or directory: u'/home/me/forge-workspace/plugins/triggerdb/inspector/.trigger/cache/8e7bd9547206ecca974530109983fc8d.zip'

any assistance appreciated.

this sounds bug fixed in v1.4.43 of platform, libs end in wrong place during generation of inspector project.

if edit plugin/manifest.json update platform version v1.4.43, rebuild inspector, should go.

apologies include_dependencies red herring: i've removed our docs until server-side work enable step.


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -