Robot Application Error

Publié presque 2 ans il y a par  Ali Muqaddas

Publier un sujet
Non résolus
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. 

Pièces jointes (1)

0 Votes


1 Commentaires

Lukas Brandt

Lukas Brandt publiés presque 2 ans il y a

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

Connexion ou S'inscrire pour poster un commentaire