I have followed the tutorial on how to make an expansion for android apk, but i have only resulted in a single 88mb apk file with no obb files. I am using the daily build 1137.
the config.lua
[lua]application = {
launchPad = false,
content = {
width = 320,
height = 480,
scale = “letterbox”,
fps = 30,
imageSuffix = {
["_hd"] = 1.6,
}
},
license =
{
google =
{
key = “android key”
},
},
}
settings =
{
orientation =
{
default=“landscapeRight”,
supported=
{
“landscapeRight”
}
},
android=
{
versionCode=“8”
},
androidPermissions=
{
“android.permission.RECORD_AUDIO”
}
}[/lua]
the build settings
[lua]settings = {
orientation = {
default = “landscapeRight”,
supported = { “landscapeRight” }
},
iphone = {
plist = {
UIStatusBarHidden = false,
UIPrerenderedIcon = true, – set to false for “shine” overlay
UIApplicationExitsOnSuspend = false,
CFBudleIconFile=“image/LT_logo.PNG”
}
},
andriod=
{
versionCode=“8”,
usesExpansionFile = true,
usesPermissions = {
“android.permission.INTERNET”,
“com.android.vending.CHECK_LICENSE”,
“android.permission.WRITE_EXTERNAL_STORAGE”,
“android.permission.RECORD_AUDIO”
},
},
}
[/lua]
I’m not sure if there is something wrong with my code or there is a procedure that i need to follow some where.
Thanks.
