how do I run gradlew --refresh-dependencies

已回答

I have no clue how or where to run gradlew --refresh-dependencies or gradlew clean, am I missing something really obvious

0
Please try below to run those Gradle commands in IntelliJ IDEA:
    
1. Open View > Tool Windows > Gradle.
    
2. In your project’s Gradle tree, expand Tasks > build.
    
3. Double‑click clean to run it.
    
4. For refresh-dependencies, use the Gradle tool window’s “Reload All Gradle Projects” button (the elephant with arrows). This triggers a dependency refresh equivalent to --refresh-dependencies.
    


0

请先登录再写评论。