34 questions
0 votes
0 answers
125 views
How can I delete split APKs from my bundle on Android?
I'm using Play Asset Delivery to download my game assets, which I decompress from the install-time asset pack directly into my app's sandbox file system. After I've decompressed the asset packs, I no ...
0 votes
1 answer
113 views
How to copy ALL install-time Play Asset Deliver files to my app's file system on Android?
My Android app is using install-time Play Asset Delivery to deliver all my game's assets. This asset folder is an arbitrary hierarchy of directories that I need to copy verbatim into my app's file ...
0 votes
1 answer
435 views
How to copy Asset folder content into internal storage in Xamarin.Android?
I need to copy the content in a folder located in Assets in my Xamarin.Android project. There are more than 10 files in my Content folder and I need to create a folder called Models in my application'...
1 vote
0 answers
695 views
Using react-native-video to read the video from android asset folder
I am using react-native-video to play videos and it works well in React Native asset system. But in my case, I must to read the video from android asset folder. Does anyone can help me? Below are the ...
0 votes
1 answer
707 views
Android studio fileFilter with assetManager
I have the following functionality to a desktop application with java and I want to do the same thing for a mobile application. File f = new File(pathToFiles); File[] files = f.listFiles(new ...
0 votes
0 answers
755 views
When reading from InputStream to ByteBuffer.array(), first 4 bytes of data are dropped
Let me give a simplified version of what I've tried. I have a file asset that contains a raw array of numbers (total of N number each is 4 bytes wide). I make an InputStream using AssetManager and try ...
0 votes
1 answer
79 views
Android Failed to Show PDF using AssetManager
I want to open a PDF from the assets folder from my activity button action and I used the below codes but nothing happens. public class AssetsProvider extends ContentProvider { @Override ...
0 votes
1 answer
1k views
File Access problem from asset pack in android from the testing app downloaded from Playstore?
I have a question about the file accessing process from the asset folder of android which uses play asset delivery. I have done setup with the play asset delivery for deploying my android application ...
0 votes
1 answer
2k views
how to load a tflite model in Java using AssetManager and Play Asset Delivery?
I have a .tflite model file that is over 200MB in size. As it increases the 150MB max size for an apk I had to bundle in in an app bundle using Play Asset Delivery (PAD). I followed the guide ...
1 vote
0 answers
130 views
How to make HTML video elements buffer assets loaded with AssetManager
I am currently creating an App with Ionic. Because App Bundle sizes in the Google Playstore are limited to 150 MB I am using Play Asset Delivery to load bigger Assets like Images and Videos. I use ...
0 votes
1 answer
291 views
Get list of mp3 files from assets folder and save in shared preference
I have an app in which I have some mp3 sounds in the assets folder. At the start of the app, I am getting the list of files and copy all files from assets to getExternalFilesDir(). Invoke the media ...
0 votes
1 answer
480 views
Android Native Activity AssetManager VS 2019 Not Working
I am trying to load an image and a text file using the AAssetManager in the Android Native Activity in VS 2019. I've tried every combination of paths I could think of to get AAssetManager_openDir or ...
0 votes
1 answer
2k views
What's wrong with "no suitable method found for load"?
Sound doesn't play when running my app in android, so suggested workarounds include AssetManager to preload files: I want to preload all files when class is initialized and play it later in a sub-...
0 votes
1 answer
338 views
Android Asset Manager unable to load wav file assets from the assets directory
I am have a few wav files that I want to load with the help of Android's asset manager. Unfortunately, everytime I try to do so, I get the following error java.io.FileNotFoundException: audio-file....
0 votes
1 answer
1k views
What is the equivalent of target_link_libraries in Android.mk
I am trying to compile an android project using Android.mk and need to include the following libraries: native-audio-jni android log OpenSLES. A similar project (https://github.com/googlesamples/...