Azure通知中心依赖项无法正常工作

问题描述 投票:1回答:1

我正在关注推送通知的Microsoft documentation,但是当我尝试实现lib时,它无效。

implementation 'com.microsoft.azure:notification-hubs-android-sdk:0.6@aar'

这是我得到的唯一错误:

Failed to resolve: com.microsoft.azure:notification-hubs-android-sdk:0.6
android azure azure-notificationhub
1个回答
1
投票

您需要在依赖项部分之后添加以下存储库。

repositories {
    maven {
        url "https://dl.bintray.com/microsoftazuremobile/SDK"
    }
}

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.