A corona scene for showing all the Womi apps.
- Current Version : 1.0.0
- Copy the
coronawomiapps
folder from the repository and place at the top level in your corona app wheremain.lua
is. - Add the Internet Permission for the app. (Only for android)
settings =
{
android =
{
usesPermissions =
{
"android.permission.INTERNET",
},
},
}
For Corona Enterprise, to build on iOS 9 and above, you need to diable ATS. Add this keys in info.plist
Or you can disable ATS using plist xml - Add this into your info.plist
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Add the following code at the place where you need to open the more apps.
local options =
{
isModal = true,
effect = "fade",
time = 200,
}
composer.showOverlay("coronawomiapps.coronamoreapps",options)
- No changelogs for now :)
Thanks for using Corona Womi Apps. Feel free to Fork, send Pull request. In case of any bugs, please create an issue here.