Bonjour,

Je developpe une application sous Android et je veux telecharger des fichiers de mon serveur ftp vers ma tablette.
Apres execution de ma fonction, j'ai ca dans mon LogCat:

03-16 09:53:45.107: E/dalvikvm(11866): Could not find class 'org.joda.time.tz.ZoneInfoProvider', referenced from method org.joda.time.DateTimeZone.Ej
03-16 09:53:45.247: E/ActivityThread(718): Failed to find provider info for com.android.launcher2.settings
03-16 09:53:45.257: E/ActivityThread(718): Failed to find provider info for com.android.launcher2.settings
03-16 09:53:45.257: E/ActivityThread(718): Failed to find provider info for com.android.launcher2.settings
03-16 09:53:45.267: E/ActivityThread(718): Failed to find provider info for com.android.launcher2.settings
03-16 09:53:45.267: E/ActivityThread(718): Failed to find provider info for com.android.launcher2.settings
03-16 09:53:45.517: E/dalvikvm(11919): Could not find class 'com.flurry.sdk.i', referenced from method com.flurry.sdk.ho.a

Ensuite, voici mon manifest.xml :

Code xml : 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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.europrodif.tab_user"
    android:versionCode="1"
    android:versionName="1.0" >
 
    <uses-sdk android:minSdkVersion="4" />
 
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
 
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".Accueil"
            android:label="@string/accueil"
            android:windowSoftInputMode="adjustResize" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
 
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".MultimedImage"
            android:label="@string/multimedia" >
        </activity>
 
    </application>
 
</manifest>