This guide is for third party plugin developers who are ready to submit a plugin to the Solar2D Free Plugin directory at plugins.solar2d.com. Alternatively, you may submit it to the Solar2D Plugins Marketplace, please see the Asset Packaging Guidelines.
If you are new to the concept of plugins and how to create them, please see our Plugins guide.
Plugins are distributed differently depending on the product for which it will be used.
Your plugins will be hosted live on Corona's build servers, immediately available to all Solar2D developers. When a Solar2D developer creates a project that requires your plugin, the build server automatically integrates the plugin during the build process.
If you have a plugin written in pure Lua
If your plugin is written in native code or hybrid native+Lua, it should be submitted via a Bitbucket repo that has been shared with you (the structure of that repo must follow a particular format). Once you have an update for your repo, you can generate a pull request.
To help you get started, we have created a plugin submission template that contains starter files, with the exception of the plugins
binary directory. Essentially, you should package up your native/hybrid plugin files with the following structure:
metadata.json
— Core information about your plugin; see metadata.json below.plugins/
${VERSION}/
— Build version, for example 2024.3703
; see Version Targeting below.
android/
.jar
or .so
binary.metadata.lua
— See metadata.lua below.resources/
package.txt
— Contains the name of the package for which to generate a R
file.assets/
— This folder contains files to be added to the assets folder and can be retrieved via the assets manager.res/
— This folder contains files you want to put in the res
folder and can be accessed via getIdentifier or by accessing the R
file of the package under package.txt
. The structure of the subfolder is exactly the same as the res
folder.iphone/
.a
binary (ARMv7).metadata.lua
— See metadata.lua below.resources/
This folder will contain all the resources you want in the app. It is relative to the root app directory.iphone-sim/
.a
binary (i386).metadata.lua
— See metadata.lua below.resources/
— This folder will contain all of the resources you want in the app. It's relative to the root app directory.mac-sim/
.dylib
binary or Lua plugin.win32-sim/
.dll
binary or Lua plugin.This JSON file contains information about the publisher, the name of the plugin as it appears in Lua, and other related information, for example:
{ "contact": "[email protected]", "url": "http://www.mycompany.com", "pluginName": "plugin.mylibrary", "publisherId": "com.mycompany" }
For native/hybrid plugins, the metadata.lua
file describes properties of the plugin binary. This file is required for Android, iOS, and the iOS Simulator.
.jar
and .so
are supported. In addition, you can specify elements in the AndroidManifest.xml
file that need to be modified in order to accommodate the plugin.If you're developing a plugin that depends on the Android Support Libraries or Google Play Services, please read our Android Dependency Integration guide.
For iOS and the iOS Simulator, the metadata.lua
files should be the same. In both, you specify the format of the binary. Currently, only static libraries (.a
) are supported.
You can declare dependencies through the coronaManifest
section. These plugins will be downloaded and bundled with your own during a Corona Simulator build.
The plugin submission template provides stub versions. Here are some examples:
-- Android local metadata = { plugin = { format = "jar", manifest = { permissions = {}, usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS_NETWORK_STATE", "android.permission.READ_PHONE_STATE", }, usesFeatures = {}, applicationChildElements = { -- Array of strings [[ <activity android:name="com.mycompany.MyActivity" android:configChanges="keyboard|keyboardHidden"/> ]], }, }, }, coronaManifest = { dependencies = { ["shared.memoryBitmap"] = "com.coronalabs", }, }, } return metadata
-- iOS / iOS Simulator local metadata = { plugin = { format = "staticLibrary", -- This is the name without the "lib" prefix -- In this case, the static library is called "libplugin_openudid.a" staticLibs = { "plugin_openudid", }, frameworks = {}, frameworksOptional = {}, }, coronaManifest = { dependencies = { ["shared.memoryBitmap"] = "com.coronalabs", }, }, } return metadata
In regards to iOS frameworks, Corona automatically links to the following frameworks. If you need to link against additional frameworks, you can specify them as either required inside the frameworks
table or optional (weak linking) inside the frameworksOptional
table. When you specify them, please omit the .framework
extension.
AddressBook
AddressBookUI
AssetsLibrary
AudioToolbox
AVFoundation
CFNetwork
CoreGraphics
CoreLocation
CoreMedia
CoreMotion
Foundation
GameKit
iAd
ImageIO
MapKit
MediaPlayer
MessageUI
MobileCoreServices
OpenAL
OpenGLES
Photos
QuartzCore
Security
StoreKit
SystemConfiguration
UIKit
Additionally, for backward compatibility, Corona weak links against the Accounts
, AdSupport
, Social
, and Twitter
frameworks.
For Android, resources can be included into the assets
or the res
directory in the resulting .apk
after a build.
To package resources into the assets
directory, put the resources into the assets
folder indicated below. The directory structure will be persist through the build process.
plugins/
${VERSION}/
— Build version, for example 2024.3703
; see Version Targeting below.
android/
resources/
assets/
— This folder contains files to be added to the assets folder and can be retrieved via the assets manager.To package resources into the res
directory, put the resources into the res
folder indicated below. This res
folder can contain subfolders which are the same folders as a native Android build, for example drawable
, layout
, etc.
plugins/
${VERSION}/
— Build version, for example 2024.3703
; see Version Targeting below.
android/
resources/
res/
— This folder contains files you want to put in the res
folder and can be accessed via getIdentifier or by accessing the R
file of the package under package.txt
. The structure of the subfolder is exactly the same as the res
folder.To include resources in the .app
bundle, put them into the resources
folder indicated below. These resources will be added to the bundle relative to the base directory. For example, if you put example.png
into the resources
folder, it will be included like example.app/example.png
.
plugins/
${VERSION}/
— Build version, for example 2024.3703
; see Version Targeting below.
iphone/
resources/
This folder will contain all the resources you want in the app. It is relative to the root app directory.iphone-sim/
resources/
— This folder will contain all of the resources you want in the app. It's relative to the root app directory.When a plugin is published to Corona's servers, you must specify a
For example, if you want your plugin to be supported in build 2024.3703 or later, you should use 2024.3703
for ${VERSION}
per the directory structures shown above. Then, in your documentation or elsewhere, you would tell developers to install Solar2D version 2024.3703 or later to access the plugin.
When you build your plugin binary, you should use the corresponding version of Solar2D Native.
For new plugins, we highly recommend that you support the most recent public release. This ensures that your plugin is available to the broadest audience possible.
Normally, when you update a plugin binary, you simply
In this situation, you should deploy a separate plugin binary. This binary will correspond to a different/newer build version of Solar2D. A developer can then simply obtain that version to access the newer version of the plugin. In this manner, you can keep the legacy plugin binary around to preserve backwards compatibility.
At a minimum, you will need to supply a Lua plugin stub for all platforms, including versions for Windows and macOS. These stubs should allow Solar2D developers to make calls as they would on a
Under the build version of the plugin folder, you should supply your plugin implementations within the folders named android
, iphone
, iphone-sim
mac-sim
win32-sim
.dll
and .dylib
files for the Corona Simulator?If the plugin does not have an implementation for Windows or macOS, we recommend creating Lua stub files (see above).
If you wish to provide Simulator plugin implementations, you will need to use Visual Studio (Windows) or Xcode (macOS). Some useful guidelines can be found here:
.dll
).dylib
)iphone
and iphone-sim
folder?When you submit a plugin, two versions should be submitted. The iphone
folder should contain the ARMv7 plugin and the iphone-sim
.so
) plugin creation?The native library (.so
) plugin should be built with the Android NDK labeled android-ndk-r10d
.
The plugin can be tested using Solar2D Native by linking the static library (iOS) or through including the library in your project's libs
directory (Android). After initial testing, you will need to submit the binaries to Corona Labs to test with Solar2D.