Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialArmin Naderi
18,713 PointsNot receiving remaining grade files
I only received the .idea, build.grade, reviews.iml, and settings.gradle file within my "reviews" project. Any pointers on where I could get the remaining files? Also, the initial setup for Gradle is not displaying within Intellij. Thanks.
2 Answers
james white
78,399 PointsHi Armin, You said:
"Also, the initial setup for Gradle is not displaying within Intellij."
There are many articles on the Jetbrains site (the company that makes IntelliJ) that reference using gradle (and gradle projects) within IntelliJ like these:
https://www.jetbrains.com/idea/help/gradle.html#d211949e37
https://www.jetbrains.com/idea/help/importing-project-from-gradle-model.html
https://www.jetbrains.com/idea/help/import-project-from-gradle-page-1.html
https://www.jetbrains.com/idea/help/gradle-tool-window.html
https://www.jetbrains.com/idea/help/gradle-project-data-to-import-dialog.html
https://www.jetbrains.com/idea/help/gradle-2.html
https://www.jetbrains.com/idea/help/android-gradle.html
This are also helpful pages outside the JetBrains site as well like these:
http://stackoverflow.com/questions/30041281/intellij-idea-and-gradle-projects
http://stackoverflow.com/questions/18495474/intellij-cannot-find-gradle-home-location
https://docs.gradle.org/current/userguide/idea_plugin.html
https://docs.gradle.org/current/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.html
https://plugins.jetbrains.com/plugin/7150?pr=idea
There is a picture of the "Import Project from Gradle" dialog box on this page
(which hopefully you are able to get to):
Armin Naderi
18,713 PointsThank you.