基础版本
diff --git a/www/js/mobile.js b/www/js/mobile.js
new file mode 100644
index 0000000..e5abfb7
--- /dev/null
+++ b/www/js/mobile.js
@@ -0,0 +1,19 @@
+var app = {
+
+ // Application Constructor
+ initialize: function() {
+ document.addEventListener('deviceready', this.onDeviceReady.bind(this), false);
+ },
+
+ onDeviceReady: function() {
+ this.receivedEvent('deviceready');
+ var uid = window.localStorage.getItem("uid");
+
+ },
+
+ // Update DOM on a Received Event
+ receivedEvent: function(id) {
+
+ }
+};
+app.initialize();