We use cookies to try and give you a better experience in Freshdesk.
You can learn more about what kind of cookies we use, why, and how from our Privacy policy. If you hate cookies, or are just on a diet, you can disable them altogether too. Just note that the Freshdesk service is pretty big on some cookies (we love the choco-chip ones), and some portions of Freshdesk may not work properly if you disable cookies.
We’ll also assume you agree to the way we use cookies and are ok with it as described in our Privacy policy, unless you choose to disable them altogether through your browser.
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 10 months 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