@Rob Thanks a lot man 
Found a important post in it by Joshua Quick [Hope it will work] , please have a look on it…
Both the “main.lua” launch arguments and the “applicationOpen” event will have an “androidIntent” Lua table which is only made available on Android. The “androidIntent” table will have the following fields…
– Provides the URI returned by the Java Intent.getData() method.
androidIntent.url
– Provides the action string returned by the Intent.getAction() method.
androidIntent.action
– A Lua string array matching the collection returned by the Intent.getCategories() method.
androidIntent.categories
– A Lua table matching the Bundle returned by the Intent.getExtras() method.
– The keys are strings and the values are Lua types that best match the Java value types.
– Note that this does support nested tables/bundles.
androidIntent.extras
You’ll need to make sure to do if checks on each of the above fields in the “androidIntent” table before attempting to access its data. If the Java equivalent Intent methods return null, then they will be set to nil on the Lua side.
Information about the Android “Intent” Java class can be found here…
http://developer.android.com/reference/android/content/Intent.html