From 483bb53d9ce9ab0ca05e4d5845217622491bc036 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Mon, 23 Apr 2012 15:22:41 -0700 Subject: [PATCH] Minor tweak to the test so it loads the correct HTML --- test/src/org/apache/cordova/test/PhoneGapViewTestActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/org/apache/cordova/test/PhoneGapViewTestActivity.java b/test/src/org/apache/cordova/test/PhoneGapViewTestActivity.java index 9e5b40fc..784332a1 100644 --- a/test/src/org/apache/cordova/test/PhoneGapViewTestActivity.java +++ b/test/src/org/apache/cordova/test/PhoneGapViewTestActivity.java @@ -16,7 +16,7 @@ public class PhoneGapViewTestActivity extends Activity { phoneGap = (CordovaWebView) findViewById(R.id.phoneGapView); - phoneGap.loadUrl("file:///android_asset/index.html"); + phoneGap.loadUrl("file:///android_asset/www/index.html"); }