i have build an apk, and use PackageTool to pack resources.
but i got error here:
bool PackageFile::Open(const String& fileName, unsigned startOffset)
{
#ifdef ANDROID
if (URHO3D_IS_ASSET(fileName))
{
URHO3D_LOGERROR("Package files within the apk are not supported on Android");
return false;
}
#endif
...
}
is there has some reason for Package files within the apk are not supported on Android and what do i need to do to use PackageTool on android?