Sha256: a1b94e2cd0cb709030b272d07bc967f37d8543a20fc9325f80a0d1a9098ccd58

Contents?: true

Size: 388 Bytes

Versions: 13

Compression:

Stored size: 388 Bytes

Contents

package com.rhomobile.rhodes.webview;

import android.webkit.WebSettings;
import android.webkit.WebView;

public class RhoWebSettingsNew implements RhoWebSettings {

	public WebSettings setWebSettings(WebView w) {
		RhoWebSettingsOld ws = new RhoWebSettingsOld();
		WebSettings webSettings = ws.setWebSettings(w);
		
		webSettings.setAppCacheEnabled(true);
		
		return webSettings;
	}

}

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rhodes-2.2.4.beta.1 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.3 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.3.beta.1 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.2 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.2.beta.1 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.1 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.1.beta.2 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.1.beta.1 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.0 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.0.beta.3 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.0.beta.2 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.2.0.beta.1 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java
rhodes-2.1.0 platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java