Reputation: 207
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 any one help me? and please provide any link to develop an application using database in phonegap.
Upvotes: 0
Views: 544
Reputation: 569
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>
Upvotes: 3