Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd just download and use latest version of phonegap : v.1.8.1

as usual, I replace the setContentView(R.layout.main) line with super.loadUrl("file:///android_asset/www/index.html");

When I test my "hello world" application, it will always force close. The app can't run properly. But if i change back the line into setContentView(R.layout.main), the app will run properly and there is no problem (for the application). The real problem is, the application not load the index.html because there is no super.loadUrl("file:///android_asset/www/index.html"); line.

here is my code :

package com.urfinder.android;

import android.os.Bundle;

import org.apache.cordova.DroidGap;

public class URFinderActivity extends DroidGap {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        super.loadUrl("file:///android_asset/www/index.html");

    }
}`

Anyone can give me some advise about this? Thank you :)

share|improve this question
For info, I use min sdk level 8 – Oliver Jordan Jun 21 '12 at 6:50
Please follow the Getting Started guide and also the phonegap-android-eclipse-quickstart – Rajesh Jun 21 '12 at 6:51
post your full code abt activity – Neji Jun 21 '12 at 7:05
@NejiHyuga see on my question, i put the full code there..thanks – Oliver Jordan Jun 21 '12 at 7:39
many times device may also cause problem, why dont you try on different devices. – Neji Jun 21 '12 at 7:45

8 Answers

Change the class's extend from Activity to DroidGap.

share|improve this answer
I had a similar problem and this helped. Thanks. – mcaesar Jun 29 '12 at 17:28

You get idea from this link http://docs.phonegap.com/en/1.8.1/guide_getting-started_android_index.md.html#Getting%20Started%20with%20Android

share|improve this answer
i've followed the instruction step by step clearly, but the app still always force close :( – Oliver Jordan Jun 21 '12 at 9:54
Check in your index.html file phonegap.js file is available or not? – Girija Patil Jun 21 '12 at 10:22

1) In your html file, have u put this line on <head>?

<script type="text/javascript" charset="utf-8" src="cordova-1.8.1.js"></script>

2) Add this line on top of your activity

import org.apache.cordova.*;

3) Have you copy cordova-1.8.1.jar from your Cordova download earlier into folder /libs

4) Have you configure project Build Path?

Right click on the /libs folder and go to Build Paths/ > Configure Build Path.... Then, in the Libraries tab, add cordova-1.8.1.jar to the project

5) Have you copy cordova.xml and plugins.xml file from your Cordova download earlier into folder /res/xml

This is your check list. Hope it help.

share|improve this answer
The PhoneGap getting started guide doesn't mention you have to copy cordova.xml and plugins.xml, so this answer solved my problem! – Rob Jul 20 '12 at 2:43

Take a look here as well:

Phonegap Application in android results in force close when phonegap version is updated from 1.5 to 1.9

A couple items to check:

  1. Did you copy the xml folder from the PhoneGap/Cordova archive to your res folder?
  2. Did you copy the Cordova javascript file to your assets/www folder?

The Hello Good luck!

Best,

-Auri

share|improve this answer

Probably you have created the WWW directory in uppercase letters... Try the code shown below.

super.loadUrl("file:///android_asset/WWW/index.html");
share|improve this answer

Simple answer for network error: use relative path(file:///android_asset/index.html). make sure there is an underscore between android and asset. Eclipse creates "assets" but instead in relative path we will use android_asset.

I have wasted hours, I was using "android-asset" in the path. Also make sure you copy the xml folder from your downloaded phonegap to the res folder of your project. The xml folder contains config.xml file.

share|improve this answer

// it just beacuse of connection timeout with emulator. add this line before load url.

super.setIntegerProperty("loadUrlTimeoutValue", 60000);
share|improve this answer

...another thing that can trip you up....the cordova jar and javascript files are created when you create the project, however...on my machine they are EMPTY. I still have to manually copy them into the project folder in the appropriate spot.

We use Sencha Touch, so that is another part of the process where incompatibilities can creep into the project. I load a lot of Javascript from the web and the order seems relevant. I have one project that I am still wringing out, but...you can put a handler in for the WebView onReceivedError event and log the error, which sometimes helps. I also am not averse to placing alert code in the HTML file to find out where the failure occurs. We are using the webkit to serve the HTML locally on the client, too...that is another potential trouble spot.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.