Sha256: 821ff92d3c9f8c42f0b09a077a5d714623a5a656f0a1701d68af6f943d1e8d10
Contents?: true
Size: 496 Bytes
Versions: 17
Compression:
Stored size: 496 Bytes
Contents
package com.rhomobile.rhodes.extmanager; import android.webkit.JavascriptInterface; import com.rhomobile.rhodes.Logger; public class RhoJSApi { private static final String TAG = RhoJSApi.class.getSimpleName(); @JavascriptInterface public String apiCall(String json, boolean async) { Logger.D(TAG, "Execute JS hook: " + json); String res = RhoExtManagerImpl.nativeJSCallEntryPoint(json); Logger.D(TAG, "JS result: " + res); return res; } }
Version data entries
17 entries across 17 versions & 2 rubygems