Robot Application Error

Posted over 1 year ago by Ali Muqaddas

Post a topic
Un Solved
A
Ali Muqaddas

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)

0 Votes


1 Comments

Lukas Brandt

Lukas Brandt posted over 1 year 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