I've been trying to get my plugin built into the player using the instructions from...
http://flowplayer.org/documentation/developer/building-in-plugins.html
I've done everything in the instructions but it is not working. It works for the control plugin but not for mine. I can build my plugin separately with no problem.
Here is the relevant snippet from the core build.properties...
Here is my builtinconfig.as...
When I do a build I see the control plugin gets built but it does not seem to even try to build my "tracking" plugin... I don't see any echo showing the plugin name. If I can provide any other info to help shed light on the problem, please let me know.
http://flowplayer.org/documentation/developer/building-in-plugins.html
I've done everything in the instructions but it is not working. It works for the control plugin but not for mine. I can build my plugin separately with no problem.
Here is the relevant snippet from the core build.properties...
# 3.1.5
plugin.buildfiles=tracking/build.xml,controls/build.xml,controls/build-tube.xml,controls/build-skinless.xml
# for plugins that can be built inside the player
plugin-classes=../tracking/src/actionscript ../controls/src/actionscript
Here is my builtinconfig.as...
package {
import org.flowplayer.controls.Controls;
import com.globalGrind.flowPlayer.TrackingPlugin;
public class BuiltInConfig {
private var controls:org.flowplayer.controls.Controls;
public static const config:Object = {
key:"xxxxxxxxxxxxxx",
logo: null,
plugins:
{
controlz: { "url":"org.flowplayer.controls.Controls" },
tracking: { "url":"com.globalGrind.flowPlayer.TrackingPlugin", "google_id": "UA-xxxxxxxx-1" }
}
}
}
}
When I do a build I see the control plugin gets built but it does not seem to even try to build my "tracking" plugin... I don't see any echo showing the plugin name. If I can provide any other info to help shed light on the problem, please let me know.