Hi Everyone,
I’m building a game for mobile devices with corona sdk, its working fine on IOS device and now I want to install it on android device.
I’m trying to install my app on android device and because my app is large than 50mb, the corona split it into apk and obb files.
apk = 7mb, obb = 153mb
I uploaded my files on google store, then I launch and install the apk.
Now - when i’m trying to open my application it runs with a black screen with no error. I found that its works fine on Android 4.0.4 and 5.1.1 but the problem only occurs at Android 6.0.1.
these are the following permission I am using to build .apk
android =
{
usesExpansionFile = true,
usesPermissions =
{
“android.permission.INTERNET”,
“android.permission.CAMERA”,
“android.permission.WRITE_EXTERNAL_STORAGE”,
“android.permission.READ_EXTERNAL_STORAGE”,
},
In config.lua I use image suffix
imageSuffix =
{
["@2x"] = 0.5,
["@1x"] = 0.2,
},
please advise
Thanks and Regards,
Ashwini