Hi Mohan, you can create mobile .apk file that points to your local development pc. You need to customise the environments.json in the config folder of your hybrid app package. Then add development section, i.e.
"development" : {
"name" : "Your-app-name",
"identifier" : "Your-identifier",
"url" : "http://your-local-pc-or-ip:8080"
}
Make sure to use an url or ip that can be accessed by mobile using WIFI network. After that you need to rebuild the mobile package to target the development endpoint, i.e.
$ npm run package -- --env.target=development
For more information on how to customise your package see, https://github.com/mendix/hybrid-app-template