I am trying to create a plugin that I want to host on my own server. I was able to compile it for iOS and Android and create .a and .jar file respectively. Now I want to use it in my Corona app. My question is; how do I host it on my own server. I read SelfHostedPlugin documentation, but was unable to understand the process of hosting it on my own server. Here is that documentation:
http://docs.coronalabs.com/native/hostedPlugin.html
Here is my directory structure:
Plugin/
README.md
Corona/
build.settings
config.lua
Default-568h.png
Icon-60.png
Icon-60@2x.png
Icon-72.png
Icon-72@2x.png
Icon-76.png
Icon-76@2x.png
Icon-ldpi.png
Icon-mdpi.png
Icon-ouya.png
Icon-Small-40.png
Icon-Small-40@2x.png
Icon-Small-50.png
Icon-Small-50@2x.png
Icon-Small.png
Icon-Small@2x.png
Icon-hdpi.png
Icon-xhdpi.png
Icon-xxhdpi.png
Icon.png
Icon@2x.png
main.lua
android/
AndroidManifest.plugin.xml
AndroidManifest.xml
ant.properties
assets/
build.plugin.sh
build.plugin.xml
build.properties
build.sh
build.xml
libs/
Corona.jar
JNLua.jar
AppLibrary.jar
local.properties
metadata.lua
proguard-project.txt
project.plugin.properties
project.properties
secure.properties
src/
plugin/
app/
<.java files>
docs/
ios/
App-Info.plist
AppCoronaDelegate.h
AppCoronaDelegate.mm
build.sh
CoronaEnterprise/
libAppLibrary.a
main.mm
metadata.lua
Library/
App.xcodeproj
Plugin.xcodeproj
Prefix.pch
I will reallly appriciate if you can guide me in the right direction with this.