mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 704520 - Flash content does not have a placeholder if on Android 3.x r=snorp a=java-only
This commit is contained in:
parent
d7693d87a0
commit
e23645ccfa
@ -222,6 +222,9 @@ abstract public class GeckoApp
|
||||
public ArrayList<PackageInfo> mPackageInfoCache = new ArrayList<PackageInfo>();
|
||||
|
||||
String[] getPluginDirectories() {
|
||||
// we don't support Honeycomb and later
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
|
||||
return new String[0];
|
||||
|
||||
Log.w(LOGTAG, "zerdatime " + new Date().getTime() + " - start of getPluginDirectories");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user