Phonegap application for Android
I am new to phonegap. According to the steps showed in http://www.phonegap.com/start#android link I developed a simple application. But the problem is if I include the phonegap.0.9.4.js in <script>
tag the application is aborting.
If I don't use the phonegap script file my application is running properly. Due to this I am unable to use functions of phonegap. Can 开发者_Go百科any one help me? and please provide any link to develop an application using database in phonegap.
Here is a detailed tutorial: Creating an Android “Hello World” Application with PhoneGap
Following is the correct syntax for including the phonegap.0.9.4.js in the <script>
tag:
<script type="text/javascript" charset="utf-8" src="phonegap.0.9.4.js"></script>
精彩评论