The download also includes a jinky demo showing the process. It pulls the 10 newest releases, with mini. You can tap an image to hear the 30 second sample, if one is available. The demo must be compiled and run on a device, due to the use of some native components.
Yes, I have :), but justed wanted to do a little testing first. Is it possible to distribute, or perform testing with plugins outside of Corona installing them?
Just curious on external testing practices for plugins.
During development, you make a folder called plugin in your project and drop the .lua files that go with the plugin so that when you do the require you do:
local spotify = require( “plugin.spotify” )
The spotify.lua file is a standard module that you would require if it were stand alone.
Yes, I have :), but justed wanted to do a little testing first. Is it possible to distribute, or perform testing with plugins outside of Corona installing them?
Just curious on external testing practices for plugins.
During development, you make a folder called plugin in your project and drop the .lua files that go with the plugin so that when you do the require you do:
local spotify = require( “plugin.spotify” )
The spotify.lua file is a standard module that you would require if it were stand alone.