Bonjour,
Je rencontre des problèmes dans mon androidmanifest.xml et je n'arrives pas à trouver la solution.
Je joint une copie d'écran pour expliquer mes soucis.
Avec mes remerciements pour votre aide,
Bernard
![]()
Bonjour,
Je rencontre des problèmes dans mon androidmanifest.xml et je n'arrives pas à trouver la solution.
Je joint une copie d'écran pour expliquer mes soucis.
Avec mes remerciements pour votre aide,
Bernard
![]()
Bonjour,
Remplace @drawable/ic_launcher.png par @mipmap/ic_launcher
Vérifies si tu as bien dans ton dossier style une theme qui se nomme AppTheme
« Il est assez difficile de trouver une erreur dans son code quand on la cherche. C’est encore bien plus dur quand on est convaincu que le code est juste. » - Steve McConnell
N'oubliez pas de consulter les FAQ Swift, Android
Tutoriel : Développer une application multilingue sous iOS
Inutile de modifier ce fichier puisque tu peux l'effacer il appartient au dossier build.
fait ce que Seelass t'a dit sur le fichier Android Manifest.XML de ton projet.
c'est à dire laisse celui qui a des erreurs il va se corriger tout seul
L'erreur dans le manifest est corrigée, mais maintenant j'ai cette erreur !
Information:Gradle tasks [clean, :app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies, :app:compileDebugSources, :app:compileDebugAndroidTestSources, :app:compileDebugUnitTestSources]
Error:No resource found that matches the given name (at 'minWidth' with value '@dimen/abc_search_view_text_min_width').
Error:No resource found that matches the given name (at 'paddingTop' with value '@dimen/abc_dialog_list_padding_vertical_material').
Error:No resource found that matches the given name (at 'paddingBottom' with value '@dimen/abc_dialog_list_padding_vertical_material').
Error:No resource found that matches the given name (at 'minWidth' with value '@dimen/abc_search_view_text_min_width').
Error:No resource found that matches the given name (at 'paddingTop' with value '@dimen/abc_dialog_list_padding_vertical_material').
Error:No resource found that matches the given name (at 'paddingBottom' with value '@dimen/abc_dialog_list_padding_vertical_material').
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: Failed to execute aapt
L'erreur dit aucune ressource trouvée correspondant au nom donné (No resource found that matches the given name). Regardes dans le fichier dimens.xml qui se trouve dans res->values si tu as bien
abc_search_view_text_min_width
abc_dialog_list_padding_vertical_material
abc_dialog_list_padding_vertical_material
abc_search_view_text_min_width
abc_dialog_list_padding_vertical_material
abc_dialog_list_padding_vertical_material
déclarés
« Il est assez difficile de trouver une erreur dans son code quand on la cherche. C’est encore bien plus dur quand on est convaincu que le code est juste. » - Steve McConnell
N'oubliez pas de consulter les FAQ Swift, Android
Tutoriel : Développer une application multilingue sous iOS
Voilà mon fichier dimens.xml
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<dimen name="fab_margin">16dp</dimen>
</resources>
Partager