| 1516 | |
| 1517 | #if BX_PLATFORM_ANDROID |
| 1518 | Content::Content() |
| 1519 | : _thread(SharedAsyncThread.newThread()) |
| 1520 | , _appPath(getPrefPath()) { |
| 1521 | _apkFilter = "assets/"s; |
| 1522 | _assetPath = SharedApplication.getAPKPath() + '/' + _apkFilter; |
| 1523 | trimTrailingSlashes(_assetPath); |
| 1524 | _apkFile = New<ZipFile>(SharedApplication.getAPKPath(), _apkFilter); |
| 1525 | _writablePath = _appPath; |
| 1526 | } |
| 1527 | |
| 1528 | uint8_t* Content::loadUnsafe(String filename, int64_t& size) { |
| 1529 | uint8_t* data = nullptr; |
nothing calls this directly
no test coverage detected