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
883 views Asked by Saher Shaam At
1
There are 1 answers
Related Questions in FLASH
- Failing write/read on RH850 with NOR flash
- Unique ID to transfer guest account data from Adobe AIR to Unity
- flashplayer_32_sa: SecurityError: Error #2028: Local-with-filesystem SWF file
- what is the simplest way and what applications to use in making an exe file that runs .swf file assetss
- Does a physical filesystem works only for a specific type of storage media?
- when I try to enable flash encryption in esp32, the bootloader size is large . But I'm unable to find bootloader field in partition table
- Manage FIFO implemented in a non-volatile flash NOR memory
- create a quiz with actionscript 3
- How to connect two x16 nor flash to nor flash controller?
- Looping in Adobe Flash Professional CS6
- AOSP flahed to android emulator
- How do I compile Flash app files with mxml and as extensions?
- Winbond W25Q01 (1G-BIT) Flash erases 256-bytes not 4K and fails write-read-verify after address 0x07000000
- On Pixel 7a Android AOSP
- Defer implementation of interface functions to child class
Related Questions in ANDROID-WEBVIEW
- How do I correctly fill in a webpage form from an android app?
- Asset file not being included on older versions of Android
- WebView Automation Android - Capture Steps performed by the user & Repeat it automatically
- Null Pointer exception when using progressbar with webview
- Switch between native activities to web view activity from Espresso
- Issue with calling JavaScript interface function in Android WebView
- Resource-id is not getting displayed in appium inspector
- Current Location on the react and android webview is working in Android Studio but on the android app
- Android: How to disable permission popup from webview and show a native permission dialog
- Android WebView Triggers Double Requests for a One-Time Use Download Link
- Android WebView can't load web page, and returns white screen
- Can I build my Vue project to run android WebView?
- Cookie manager is not deleting the cookies or expire them
- Jetpack Compose WebView: Softkeyboard Enter Key behaves differently based on number of input fields
- Navigate back from Chrome custom tabs
Related Questions in GOOGLE-TV
- Android TV Remote Control v2 invoke Voice Assistant
- Making a Dreamservice selectable as a custom Ambient Mode screensaver
- Google TV remote volume up/down not registering
- How to implement a DIAL launch on Android TVs and Google TVs?
- Leanback row transparent color for cards
- Android TV MediaController notifies properly, but Google TV no longer works
- Android Glide highlight selected image for Google TV
- How to write animation or activity transition on android TV as shown in figma file?
- Do I need to do something special to enable HDR on ExoPlayer on the Chromecast with Google TV?
- ImageView not honoring Picture settings on Android TV
- Android TV cast - Senders count limit
- Android TV App : Rejected - Not Designed in Landscape
- Firebase test-lab uploaded APK does not specify a main launcher activity
- How to create a setup menu screen with steps on AndroidTV
- No "inspect" link chromecast 4th gen
Related Questions in ANDROID-2.1-ECLAIR
- Use Android Studio to code for an old platform
- How to improve WebView on Android Eclaire?
- Out of memory error when reloading activity several times
- What is the main reason for Android 2.x browser issues (e.g. CSS support)?
- Android: Does 'Complie With' cause "There is a problem_parsing the package" error?
- Wrapping long text in notification on API level 7
- Understanding XML attributes for custom packages
- setImageBitmap in BaseAdapter#getView doesn't update ImageView
- Is there a way to add reminders to a new calendar event using Intents?
- How to add structured data to a new contact Intent
- Adding a new contact to the address book through my Android app targeting Android 2.1+
- Android app working on 2.3 but not on 4.0
- How Android View Hierarchies work
- Problems with standard Search in Android 2.1. Running in another process?
- SimpleCursorAdapter error: column does not exist - only happens in Android 2.1
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?
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)
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.