Your Privacy
We use cookies to give you a better experience in United Robotics Group
You can learn more about what kind of cookies we use, why, and how from our Privacy Policy. Because we respect your right to privacy, you can choose not to allow some types of cookies. Click on the different category headings in our cookie banner to change our default settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer. For more details, check out our Privacy Policy link below.
Strictly Necessary Cookies
These cookies are necessary for the website to function and cannot be switched off in our systems, but do not store any person information. They are usually set in response to your actions that triggers a request for services, such as setting your privacy preferences, logging in or filling forms. You can change your browser settings to alert you about these cookies, but some parts of the Website may not work.
View Cookies
In new machines, we are getting error in android studio when creating new robot application. The gradle error are attached while old projects are working fine. The same problem with three different machines.
Attachments (1)
Error.txt
10.2 KB
0 Votes
1 Comments
Lukas Brandt posted over 2 years ago
Hey,
this could be because the references to the Maven repositories in newer versions of Android Studio have been moved from the build.gradle to the settings.gradle file.
Since the Softbank Pepper SDK was no longer updated, this change was also not applied and the Pepper SDK no longer automatically adds the repository.
Your error text says it can't find the Pepper SDK dependencies because it only queries the two default repositories Google and Maven Central.
The Pepper SDK repository must now be manually added to settings.gradle:
repositories {
google()
mavenCentral()
maven {
url 'https://qisdk.softbankrobotics.com/sdk/maven'
}
1 Votes
Login or Sign up to post a comment