I am new to mobile development. I am using Cordova with Visual Studio 2013 Update 4. I just added some text in the default index.html of BlankCordovaApp1. I created the apk and installed it on my android phone. But when I run the app on my phone, I cannot zoom by pinching. I read some advice about Java code for android (but I work in Visual Studio, no java).
1)I read and tried the following but to no avail:
<meta name='viewport' content='initial-scale=1.0,minimum-scale=1.0, maximum-scale=10.0;user-scalable=yes' />
2)This solution Cordova : How to enable viewport zoom says "put following in the onCreate method of your main Android Java File inside src/com/packagename directory", but there is no "src" folder in my Visual Studio folders.
3)I also tried to put this in config.xml, but it didn't help.
<preference name="EnableViewportScale" value="true" />
Can you help me? Thanks