проблема интеграции фитполо SDK - PullRequest
0 голосов
/ 24 февраля 2020

Я пытаюсь создать приложение, которое подключается к устройствам fitpolo, используя fitpolo h706 sdk, так как это устройство h706, но интеграция не работает. вот ошибка

ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve project :fitpolosupport.
Show Details
Affected Modules: app


ERROR: Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve project :fitpolosupport.
Show Details
Affected Modules: app


ERROR: Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not resolve project :fitpolosupport.
Show Details
Affected Modules: app

вот код

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation project(path: ':fitpolosupport')
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...