Reputation: 6128
I have imported the sample app given by google in sdk.
I have around 60 images in my project, for testing purpose i have made a zip folder and renamed it as main.2.com.abc.ss.obb.
so that i can use this .obb file for testing? Is this the right way to do it?
Now i have not uploaded the sample app given in the sdk in my console to test, before that i want to test it on device, is there any way i can test it?
When i just run the app it says "Downloading failed resource not found"
Upvotes: 1
Views: 2460
Reputation: 43798
You can move the extension file manually to the device for example with adb push
.
It has to go to the SD card in directory: Android/obb/your.package.name/
. Assuming your package name is com.abc.ss
a command similar to
adb push main.2.com.abc.ss.obb /sdcard/Android/obb/com.abc.ss/main.2.com.abc.ss.obb
will do the trick. The path to the sdcard may vary depending on device and android version.
Upvotes: 3