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 trialTomá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!!