fixed compilation issue with deprecated setLatestEventInfo in EntryActivity by creating a new Notification instead

used support-v4 NotificationCompat builder for that, did have to upgrade minSdk from 3 to 4 because of that
This commit is contained in:
Hans Cappelle
2017-10-08 14:56:32 +02:00
parent 8e353b8172
commit 72542af042
3 changed files with 22 additions and 7 deletions

View File

@@ -2,6 +2,10 @@
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
@@ -11,5 +15,9 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}