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
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'
}