diff --git a/plugin.xml b/plugin.xml
index dec427f..dd2636a 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -54,7 +54,7 @@
-
+
@@ -97,10 +97,4 @@
-
-
-
-
-
-
diff --git a/src/tizen/SplashScreenProxy.js b/src/tizen/SplashScreenProxy.js
deleted file mode 100644
index 5222b6b..0000000
--- a/src/tizen/SplashScreenProxy.js
+++ /dev/null
@@ -1,22 +0,0 @@
-( function() {
-
-win = null;
-
-module.exports = {
- show: function() {
- if ( win === null ) {
- win = window.open('splashscreen.html');
- }
- },
-
- hide: function() {
- if ( win !== null ) {
- win.close();
- win = null;
- }
- }
-};
-
-require("cordova/tizen/commandProxy").add("SplashScreen", module.exports);
-
-})();