Bonsoir les amis j’essaye d’utiliser les composants telque la toolbar, les cardView et autres pour construire l’interface de mon application mobile sur android.
Pour effectuer cela je regarde le tuto d’openclassroom à l’adresse: https://openclassrooms.com/fr/courses/4568596-construisez-une-interface-utilisateur-flexible-et-adaptative/4783171-decouvrez-et-implementez-la-barre-d-outils
J’ai importer la dépendance dans mon fichier gradle comme ci-dessous:
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.squareup.okhttp3:okhttp:4.5.0"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.vectordrawable:vectordrawable:1.0.1'
implementation 'androidx.navigation:navigation-fragment:2.0.0'
implementation 'androidx.navigation:navigation-ui:2.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
J’ai ensuite importé:
import android.support.v7.app.AppCompatActivity;
Dans mon fichier Java et je reçois l’erreur can not resolve symbol v7.
Pouvez-vous m’aider?
Merci
+0
-0