diff --git a/bin/classes.dex b/bin/classes.dex index a87af5d..af2f98d 100644 Binary files a/bin/classes.dex and b/bin/classes.dex differ diff --git a/bin/classes/com/thunder/simtech/MainActivity$1.class b/bin/classes/com/thunder/simtech/MainActivity$1.class index 9f67e8a..67a52a2 100644 Binary files a/bin/classes/com/thunder/simtech/MainActivity$1.class and b/bin/classes/com/thunder/simtech/MainActivity$1.class differ diff --git a/bin/classes/com/thunder/simtech/MainActivity.class b/bin/classes/com/thunder/simtech/MainActivity.class index c92a6ec..34f2616 100644 Binary files a/bin/classes/com/thunder/simtech/MainActivity.class and b/bin/classes/com/thunder/simtech/MainActivity.class differ diff --git a/bin/simtech-thunder.apk b/bin/simtech-thunder.apk index 73d2c00..cb68c8c 100644 Binary files a/bin/simtech-thunder.apk and b/bin/simtech-thunder.apk differ diff --git a/src/com/thunder/simtech/MainActivity.java b/src/com/thunder/simtech/MainActivity.java index f5b7700..f85c0c5 100644 --- a/src/com/thunder/simtech/MainActivity.java +++ b/src/com/thunder/simtech/MainActivity.java @@ -6,6 +6,7 @@ import android.content.Context; import android.util.Log; import android.view.View; import android.view.inputmethod.InputMethodManager; +import android.webkit.WebSettings; import android.webkit.WebView; import android.webkit.WebViewClient; import android.widget.EditText; @@ -16,6 +17,8 @@ public class MainActivity extends Activity { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final WebView webView = (WebView) findViewById(R.id.webView); + WebSettings webSettings = webView.getSettings(); + webSettings.setJavaScriptEnabled(true); webView.setWebViewClient(new WebViewClient() { public boolean shouldOverrideUrlLoading(WebView view, String url){ view.loadUrl(url);