Ошибка Android Wear ConnectionResult {statusCode = SERVICE_VERSION_UPDATE_REQUIRED, resolution = null}, когда умные часы отправляют данные - PullRequest
0 голосов
/ 13 мая 2018

Я отправляю сигнал из мобильного приложения в умные часы, и после его получения умные часы генерируют сигнал и отправляют его в приложение телефона. Приложение работает нормально, пока телефон отправляет данные, но всякий раз, когда приложение пытается что-то отправить, генерируется следующая ошибка:

Ошибка Android Wear ConnectionResult {statusCode = SERVICE_VERSION_UPDATE_REQUIRED, разрешение = ноль}

Ниже приведены зависимости моего носимого устройства:

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.google.android.support:wearable:2.0.0'
    compile 'com.google.android.gms:play-services-wearable:15.0.1'
    compile 'com.github.PhilJay:MPAndroidChart:v3.0.1'
    compile 'com.firebase:firebase-client-android:2.3.1'
    compile 'com.github.Gavras:GIFView:v1.1'
    implementation 'com.google.android.gms:play-services-location:15.0.1'

    implementation 'com.google.android.gms:play-services-maps:15.0.1'
}

Ниже приведен файл зависимостей моего мобильного приложения:

dependencies {

    compile fileTree(include: ['*.jar'], dir:
            'libs')



    compile 'com.android.support:appcompat-v7:27.0.2'
    //implementation 'com.google.android.gms:play-services-base:15.0.1'
    compile 'com.google.android.gms:play-services-wearable:15.0.1'
    compile 'com.android.support:design:27.0.2'
    compile 'com.android.support:cardview-v7:27.0.2'
    compile 'com.android.support:recyclerview-v7:27.0.2'
    compile 'com.firebase:firebase-client-android:2.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.github.sundeepk:compact-calendar-view:2.0.2.1'
    compile 'com.roomorama:caldroid:3.0.1'
    implementation 'com.google.firebase:firebase-core:15.0.2'
    implementation 'com.google.firebase:firebase-auth:15.1.0'
    compile 'com.victor.ringbutton:lib:1.0.1'
    compile 'com.github.shem8:material-login:2.1.1'
    implementation 'com.google.firebase:firebase-storage:15.0.2'
    compile 'com.timqi.sectorprogressview:library:2.0.1'
    implementation 'com.google.firebase:firebase-database:15.0.1'
  //  implementation 'com.google.firebase:firebase-iid:15.1.0'
   // implementation 'com.google.firebase:firebase-database-collection:15.0.1'
    //implementation 'com.google.firebase:firebase-common:15.0.2'
    implementation 'com.google.firebase:firebase-messaging:15.0.2'

    compile 'io.github.yuweiguocn:SquareLoading:1.3.0'
    compile 'nl.psdcompany:duo-navigation-drawer:2.0.7'
    implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
    compile('com.github.thekhaeng:pushdown-anim-click:1.0.7') {
        exclude group: 'com.android.support'
    }
    compile 'com.github.zjywill:OverwatchProgress:1.5'
    compile 'com.github.vlad1m1r990:Lemniscate:1.4.2'
    implementation 'com.google.android.gms:play-services-location:15.0.1'
    implementation 'com.google.android.gms:play-services-maps:15.0.1'
    implementation 'com.google.android.gms:play-services-measurement-base:15.0.2'

}

Я попробовал другие ответы, пытаясь обновить google-play-services, щелкнув их в настройках носимых устройств, но ничего не произошло. Я также попытался повторно синхронизировать приложения с мобильного телефона, но безрезультатно.

...