diff --git a/framework/libs/junit-4.10.jar b/framework/libs/junit-4.10.jar
deleted file mode 100644
index bf5c0b9c..00000000
Binary files a/framework/libs/junit-4.10.jar and /dev/null differ
diff --git a/framework/res/xml/plugins.xml b/framework/res/xml/plugins.xml
old mode 100644
new mode 100755
index 4d84f599..73169370
--- a/framework/res/xml/plugins.xml
+++ b/framework/res/xml/plugins.xml
@@ -16,5 +16,4 @@
-
diff --git a/framework/src/com/phonegap/KeyboardHandler.java b/framework/src/com/phonegap/KeyboardHandler.java
deleted file mode 100644
index d10988cf..00000000
--- a/framework/src/com/phonegap/KeyboardHandler.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package com.phonegap;
-
-import org.json.JSONArray;
-
-import com.phonegap.api.Plugin;
-import com.phonegap.api.PluginResult;
-
-public class KeyboardHandler extends Plugin {
-
-
- /*
- * This will never be called!
- * (non-Javadoc)
- * @see com.phonegap.api.Plugin#execute(java.lang.String, org.json.JSONArray, java.lang.String)
- */
- @Override
- public PluginResult execute(String action, JSONArray args, String callbackId) {
- // TODO Auto-generated method stub
- return null;
- }
-
- public void onMessage(String id, Object data)
- {
- if(id.equals("keyboardHidden"))
- {
- super.sendJavascript("PhoneGap.fireDocumentEvent('hidekeyboard');");
- }
- else if(id.equals("keyboardVisible"))
- {
- super.sendJavascript("PhoneGap.fireDocumentEvent('showkeyboard');");
- }
- }
-}