399 votes

FileProvider - IllegalArgumentException: impossible de trouver la racine configurée

J'essaie de prendre une photo avec l'appareil photo, mais l'erreur suivante apparaît:

 FATAL EXCEPTION: main
Process: com.example.marek.myapplication, PID: 6747
java.lang.IllegalArgumentException: Failed to find configured root that contains /storage/emulated/0/Android/data/com.example.marek.myapplication/files/Pictures/JPEG_20170228_175633_470124220.jpg
    at android.support.v4.content.FileProvider$SimplePathStrategy.getUriForFile(FileProvider.java:711)
    at android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:400)
    at com.example.marek.myapplication.MainActivity.dispatchTakePictureIntent(MainActivity.java:56)
    at com.example.marek.myapplication.MainActivity.access$100(MainActivity.java:22)
    at com.example.marek.myapplication.MainActivity$1.onClick(MainActivity.java:35)
 

AndroidManifest.xml:

 <provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="com.example.marek.myapplication.fileprovider"
        android:enabled="true"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_paths" />
</provider>
 

Java:

 Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    // Ensure that there's a camera activity to handle the intent
    if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
        // Create the File where the photo should go
        File photoFile = null;
        try {
            photoFile = createImageFile();
        } catch (IOException ex) {
            Toast.makeText(getApplicationContext(), "Error while saving picture.", Toast.LENGTH_LONG).show();
        }
        // Continue only if the File was successfully created
        if (photoFile != null) {
            Uri photoURI = FileProvider.getUriForFile(this,
                    "com.example.marek.myapplication.fileprovider",
                    photoFile);
            takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
            startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
        }
    }
 

chemin_fichiers.xml

 <?xml version="1.0" encoding="utf-8"?>
<paths>
    <files-path name="my_images" path="images/"/>
</paths>
 

Je cherchais cette erreur toute la journée et essayais de comprendre FileProvider , mais je n'ai aucune idée de ce que ce message d'erreur essaie de me dire. Si vous voulez plus d'informations / code, écrivez-moi dans le commentaire.

582voto

CommonsWare Points 402670

Votre fichier est stocké sous getExternalFilesDir() . Cela correspond à <external-files-path> , pas <files-path> . De plus, votre chemin de fichier ne contient pas images/ , de sorte que l'attribut path de votre code XML n'est pas valide.

Remplacez res/xml/file_paths.xml par:

 <?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-files-path name="my_images" path="my_images" />
</paths>
 

343voto

Mitul Varmora Points 74

Cela peut résoudre le problème de tout le monde: toutes les balises sont ajoutées, vous n'avez donc pas à vous soucier du chemin des dossiers. Remplacez res / xml / chemin_fichiers.xml par:

 <?xml version="1.0" encoding="utf-8"?>
<paths>
  <external-path
    name="external"
    path="." />
  <external-files-path
    name="external_files"
    path="." />
  <cache-path
    name="cache"
    path="." />
  <external-cache-path
    name="external_cache"
    path="." />
<files-path
    name="files"
    path="." />
</paths>
 

95voto

antygravity Points 628

Vous avez un problème similaire après avoir activé les saveurs (dev, stage).

Avant les saveurs, ma ressource de chemin ressemblait à ceci:

 <?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path
    name="my_images"
    path="Android/data/pl.myapp/files/Pictures" />
</paths>
 

Après avoir ajouté android: autorités = "$ {applicationId} .fileprovider" dans Manifest appId était pl.myapp.dev ou pl.myapp.stage dépend de la saveur et l'application a commencé à planter. J'ai supprimé le chemin complet et l'ai remplacé par un point et tout a commencé à fonctionner.

 <?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path
        name="my_images"
        path="." />
</paths>
 

49voto

Innocent Points 399

Si vous utilisez un cache interne, utilisez.

 <paths xmlns:android="http://schemas.android.com/apk/res/android">
    <cache-path name="cache" path="/" />
</paths>
 

20voto

Supakij Points 141

Cela me confond un peu aussi.

Le problème est sur l'attribut "path" dans votre fichier XML.

À partir de ce document, FileProvider 'chemin' est un sous-répertoire, mais dans un autre document (appareil photo / photobasics), 'chemin' est un chemin complet.

 <?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="my_images" path="Android/data/com.example.package.name/files/Pictures" />
</paths>
 

Je viens de changer ce "chemin" en chemin complet et cela fonctionne.

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X