ERROR: Failed to resolve: com.mbientlab:metawear:3.7.1

Hi! im new to android studio and working on a project to use the functionality of the MMR. Im trying to follow the project setup docs for android studio and im faced with this error "ERROR: Failed to resolve: com.mbientlab:metawear:3.7.1"

Ive read that if im using SDK V3.3 or newer i have to enable java 8, which i already did. But im still unable to complete my sync and the same errors pop up. please help

build.gradle(App)

apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.mbientlab.freefalldetector"
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.mbientlab:metawear:3.7.1'
}

Sign In or Register to comment.