Hi everyone,
I recently made a nice app with 200 MB pictures included. With testing and uploading it directly to my Android everything worked fine (also the loading of the pictures). Once I tried uploading to the Play Store I was told that my app was too big… So I split it up into an OBB, uploaded it again. The app worked, but…
I make custom html pages which load images from my fotos folder. All my pictures used in the htmls don’t load anymore, all I see is a nice questionmark.
I load all my pictures with file:///android_asset/ in the file path, but no luck. I have tried several combinations but it just won’t work.
Can anyone tell me what I am doing wrong? I need to deliver this app before I can send my invoice!
These are my vars in the build.settings
android =
{
versionCode = “14”,
usesExpansionFile = true,
usesPermissions =
{
“android.permission.INTERNET”,
“android.permission.READ_EXTERNAL_STORAGE”,
“android.permission.WRITE_EXTERNAL_STORAGE”,
“android.permission.ACCESS_FINE_LOCATION”,
“android.permission.ACCESS_COURSE_LOCATION”,
“com.android.vending.CHECK_LICENSE”,
“com.android.vending.BILLING”,
},
supportsScreens = { smallScreens = false, normalScreens = false, largeScreens = true, xlargeScreens = true,},
},
Please help!