Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Tomás Borges
4,394 PointsError creating the app!
Hello, I have this error on my gradle build, help me please
Error:Execution failed for task ':app:preDebugAndroidTestBuild'.
Conflict with dependency 'com.android.support:support-annotations' in project ':app'. Resolved versions for app (26.1.0) and test app (27.1.1) differ. See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.
1 Answer

Quaide Simek
Courses Plus Student 233 PointsThe best solution I found for this problem was to update the compileSDKVersion to '27', and update any support dependencies in your gradle to
com.android.support:____-v7.27.0.1
There is an inconsistency between your testImplementation declarations and your implementation declarations. Updating the SDKVersion as well as your support declarations resolves it.
Tomás Borges
4,394 PointsTomás Borges
4,394 Pointsthank you!!