Android UrbanAirship Crash in takeOff

前端 未结 3 1857
悲哀的现实
悲哀的现实 2020-12-21 09:13

Hello I hope someone can help me here.

I´m working on an application which uses UrbanAirship to receive PushNotifications.

My Problem is that, s

3条回答
  •  一整个雨季
    2020-12-21 09:53

    This what your gradle should look like and Hope you have added permission in manifest for the same:
    
    repositories {
        jcenter()
        maven { url 'https://maven.fabric.io/public' }
        maven { url 'http://dl.bintray.com/urbanairship/android' }
    }
    
    dependencies {
        compile fileTree(include: '*.jar', dir: 'libs')
        compile 'com.google.android.gms:play-services-analytics:8.4.0'
        compile 'com.google.android.gms:play-services-identity:8.4.0'
        compile 'com.google.android.gms:play-services-base:8.4.0'
        compile 'com.google.android.gms:play-services-appindexing:8.4.0'
        compile 'com.google.android.gms:play-services-location:8.4.0'
        compile 'com.google.android.gms:play-services-wearable:8.4.0'
        compile 'com.google.android.gms:play-services-ads:8.4.0'
        compile 'com.google.android.gms:play-services-plus:8.4.0'
        compile project(':PlustxtAsSDK')
        compile 'com.urbanairship.android:urbanairship-sdk:6.4.1'
    }
    

提交回复
热议问题