-
Notifications
You must be signed in to change notification settings - Fork 63
Gradle Troubleshooting
This document was written while setting up the UWU-Bot and DogeQuickstart projects. AS 3.2
To solved this I added this snippet to the end of the top-level build.gradle
file, this should be the gradle fin your project folder with the project name next to inside AS.
allprojects {
repositories {
google()
jcenter()
}
}
This issue is a deprecation warning in many of the ftc_app gradle files. This is not going to cause the build to fail as of right now, however, it claims that after 2018, this may cause issues. Hopefully, FTC will update these files themselves but until then it seems safe to assume you can simply replace any instance of compile xxx
with implementation xxx
"In some cases, Road Runner's dependencies may exceed the limit of method references. To fix it, add compile 'com.android.support:multidex:1.0.3' to your dependencies and add multiDexEnabled true to the defaultConfig closure (for FTC, this is located inside build.common.gradle)."