Reputation: 105449
I'm browsing with DDMS my application's installation folder /data/data/com.my.app
and I can't find where the assets folder is. I'm using it inside my application using URI file:///android_assets/...
Upvotes: 0
Views: 1597
Reputation: 1006614
I can't find where the assets folder is
That is because there is no assets folder on the device. The assets, like your resources, are packaged into the APK file. Assets are not unpacked as part of APK installation. file:///android_asset/
, for those things that understand it, knows to look inside of the assets in your APK.
Upvotes: 3