Bonjour,

C'est ma première compilation Eclipse Android :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.example.helloworld;
 
import android.R;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
 
public class HelloWorld extends Activity {
 
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        TextView tv = new TextView(this);
        tv.setText("Hello World ! Voici ma première application Android !");
        setContentView(tv);
    }
}
An internal error occurred during: "Launching New_configuration (2)".
Path for project must have only one segment.
Quelqu'un saurait-il m'indiquer où se trouve cette New_config .. (2) ?

Merci d'avance pour votre aide.