首页 > 解决方案 > Azure notification hub dependencies not working

问题描述

I'm following the Microsoft documentation for Push Notification, but when I tried to implement the lib, its not working.

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

Thats the only error that I get :

Failed to resolve: com.microsoft.azure:notification-hubs-android-sdk:0.6

标签: androidazureazure-notificationhub

解决方案


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

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

在此处输入图像描述


推荐阅读