Robot Application Error

Gepostet über 1 Jahr her von Ali Muqaddas

Ein Thema veröffentlichen
Nicht gelöst

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. 

0 Stimmen


1 Kommentare

Lukas Brandt

Lukas Brandt gepostet über 1 Jahr her

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 Stimmen

Anmelden oder Registrieren um einen Kommentar zu veröffentlichen