ankit rawat
ankit rawat

Reputation: 401

How to add flash playing capability to android app?

My android app has a web browser component which is supposed to play flash content from the internet. I don't want to tell the users to separately download adobe flash to access flash content on my app. How can flash playing capability be added to my app? Thanks?

Upvotes: 0

Views: 1729

Answers (1)

jlindenbaum
jlindenbaum

Reputation: 1881

I haven't heard of any third party flash interpreter that you could put in your application, like a library.

Honestly, you should rethink what you're serving up to mobile clients. All mobile platforms are no longer supported - Adobe has stopped development of Adobe Flash Android - as there are alternate ways to do what Flash used to accomplish.

Edit: This is a great introduction to the <audio> tag in HTML5. You will have to double check which formats are streamable to all devices. I believe MP3 should work in iOS and Android. http://www.position-absolute.com/articles/introduction-to-the-html5-audio-tag-javascript-manipulation/

Upvotes: 4

Related Questions