Reputation: 19
I'm currently developing an android apps and I want to attach a .swf file to it for some purpose(like play it in a webview).
Is there a way to do it ? How should I start?
Upvotes: 0
Views: 429
Reputation: 1836
There are two ways of adding resources to APKs:
Place it in /res/raw
of your project or in the assets
folder.
Guides for:
Upvotes: 1