Skip to content

Commit

Permalink
update shortcutBadger to 1.1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
leolin310148 committed Aug 25, 2017
1 parent f205892 commit ffae08d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 22 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

def shortcutbadgerVersion = '1.1.13'
def shortcutbadgerVersion = '1.1.18'
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "me.leolin.isbadgeworking"
minSdkVersion 15
targetSdkVersion 24
versionCode 4
targetSdkVersion 25
versionCode 5
versionName "${new Date().format("yyyyMMddHHmmss")}"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -61,7 +61,7 @@ dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile "me.leolin:ShortcutBadger:$shortcutbadgerVersion@aar"
compile 'org.jetbrains.anko:anko-common:0.9'
compile group: 'me.leolin', name: 'IsBadgeWorking-Retrofit-Api', version: '1.0.1'
Expand Down
22 changes: 8 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.0.4'
ext.kotlin_version = '1.1.4'
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:2.3.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -17,19 +18,12 @@ apply plugin: 'kotlin'

allprojects {
repositories {
mavenCentral()
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
//task clean(type: Delete) {
// delete rootProject.buildDir
//}

4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Dec 28 10:00:20 PST 2015
#Fri Aug 18 19:24:37 CST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

0 comments on commit ffae08d

Please sign in to comment.