I am developing and testing a Android 2.1 app on my rooted revue. It needs to render Flash web videos. The app works fine if the flash web videos are launched through an external chrome browser (already installed on the rooted revue). But, I need to do some cookie manipulation. So, I need an internal Webview to launch those videos. I am getting 'Flash Pluggin Missing' error while trying to launch Flash videos through Webview. I tried installing few Flash apk plugins (available on internet for Android 2.1) to make it work. But, all of those Flash Apk failed to install. It says 'INSTALL_FAIL_OLDER_SDK" . Please help me to resolve this issue. I have been struggling for few weeks on this.
Android 2.1 - Rooted Revue GoogleTV - Flash Plugin Missing in Webview
882 Views Asked by Saher Shaam At
1
There are 1 best solutions below
Related Questions in FLASH
- How to create an ActionScript 3.0 in Flash to display Current Date, Time and Day of Week
- textinput.needsSoftKeyboard does not work (air for android)
- Flash erase image with mask - gotoandplay next frame
- Flash CS3: Text appears on button mouse over or text mouse over
- import a sound externally or from the library? AS3
- How to use Database in Flash App?
- undefined method loadCompressedDataFromByteArray through a reference with static type flash.media:Sound
- Cam streaming Flash client/widget
- Pairing a draggable object to a target object in AS3
- update flashVars of flowplayer to change video via swfObject
- Adobe Flash Pro: Locate asset with missing font
- Making an HTML Jigsaw Puzzle in Flash CC
- Passing data between MXML files and opening one after Click on another
- Moving things inside a two-dimensional array in as3?
- AS3 + webcam. Dispatch event on presence
Related Questions in ANDROID-WEBVIEW
- Delay in loading Html Page(WebView) from assets folder in real android device
- Error:(29, 6) Error: The element type "input" must be terminated by the matching end-tag "</input>"
- Controlling navigation in the Android WebView class
- Android - WebView onReceivedError opposite
- Weird rendering of components after Android System WebView update
- Allow access to local assets in android
- Update Android System WebView on SDK Emulator
- How can I control android webview activity changes when I change screen orientation?
- Supporting WebGL on Android 5's WebView
- Webview causes ANR
- How do I load url from Bundle in Android
- Get parent html element on click
- Focusing on <input type=number> in Android browser the page scrolls to the bottom
- Delay popping up a dialog fragment till a webview within has completed loading
- Is it possible login into website programmatically with android?
Related Questions in GOOGLE-TV
- Firebase reporting GoogleTV for some iOS users
- using remote control for android TV application
- .M3U8 Video Streaming on Google TV
- in google tv, QSB only show results custom data at 'other' tab?
- vertical and horizontal scrolling like 'NETFLIX' app for google tv
- Layout Issue in Android Application for Google TV
- how to make android TV app accesiible by DPAD?
- Can you create a custom driver for STB?
- Controlling google tv from an installed app on the gtv itself
- Pairing with Google TV using the Pairing Protocol
- Video Streaming not works on Google TV in an Android Application in 3.1
- Streaming audio on Google TV
- LeftNavBar doesn't honor android:showAsAction="always"
- Creating a Android left panel just like the one in "TV & Movies" application in google tv
- determinig total time for which my application is not interacted with by the user in android
Related Questions in ANDROID-2.1-ECLAIR
- Android 2.1 file reading is slow
- Why does android 2.1-update1 hang on HttpClient.execute() and not android 2.2?
- Android: Does 'Complie With' cause "There is a problem_parsing the package" error?
- Android 2.1 device to remote mysql database connection
- NullPointerException in onResume when modifying Buttons, why?
- Is BitmapFactory.decodeStream Thread safe? Sometimes my Async task finishes before it completes
- Should I be importing com.myapp.R into my activities?
- PhoneGap watch position not working with android
- Android 2.1 - Rooted Revue GoogleTV - Flash Plugin Missing in Webview
- Android 2.1 file i/o: pread fails with errno 22 (EINVAL, Invalid argument)
- Swipe Gesture inside ListView - Android
- SimpleCursorAdapter error: column does not exist - only happens in Android 2.1
- How Android View Hierarchies work
- Problems with standard Search in Android 2.1. Running in another process?
- Android app working on 2.3 but not on 4.0
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I have ran into this problem before and after doing some research, i found that google tv uses two different browser rendering engines. The Chrome browser present in google tv 2.0 uses its own rendering engine based on chrome for linux. It has got its own flash player that just runs on chrome. But in other hand, webview's use webkit rendering engine which is the rendering engine that can be found on normal android phones. The rendering engine cannot access or use the other flash player that is specifically used in Chrome. So the only way to make people use flash content from your webview is to make them install flash player that is found on android market (not on google tv's android market). But the problem is that Google TV"s use x86 instead of ARM architecture in their processor, and flash for android is compiled just for ARM. So unless adobe compiles the flash for android app for x86 processors, or google enables people to embed chrome in their apps instead of webkit webview, its not possible. So the best thing you could do now is create a web tv app instead of a native app. Good luck.