diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 484d513..2c4c751 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,7 @@ library release build: tags: - docker script: - - ./gradlew clean library:assembleRelease androidSourcesJar androidJavadocsJar + - ./gradlew clean library:assembleRelease androidSourcesJar artifacts: paths: - library/build* diff --git a/.travis.yml b/.travis.yml index 0749d07..106877e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ env: global: - ANDROID_API=28 - EMULATOR_API=21 - - ANDROID_BUILD_TOOLS=28.0.2 + - ANDROID_BUILD_TOOLS=28.0.3 - ADB_INSTALL_TIMEOUT=10 # minutes android: diff --git a/README.md b/README.md index a97a0dc..2a25fa4 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ You can find the sample app [in the Play Store](https://play.google.com/store/ap The library is hosted on jcenter. To use it, add the following to your module level `build.gradle` file's dependencies: ```gradle -implementation 'co.zsmb:materialdrawer-kt:2.0.0' +implementation 'co.zsmb:materialdrawer-kt:2.0.1' //required support lib modules implementation "androidx.appcompat:appcompat:${versions.androidX}" diff --git a/app/build.gradle b/app/build.gradle index bd17ca9..a97d4f3 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -6,7 +6,7 @@ apply from: '../testformatter.gradle' android { compileSdkVersion 28 - buildToolsVersion '28.0.2' + buildToolsVersion '28.0.3' defaultConfig { applicationId "co.zsmb.materialdrawerktexample" minSdkVersion 14 diff --git a/build.gradle b/build.gradle index 8b9ed20..c09a7fb 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,11 @@ buildscript { - ext.kotlin_version = '1.2.70' + ext.kotlin_version = '1.2.71' repositories { jcenter() google() } dependencies { - classpath 'com.android.tools.build:gradle:3.2.0-rc03' + classpath 'com.android.tools.build:gradle:3.2.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' diff --git a/library/build.gradle b/library/build.gradle index ba42063..5bb1f62 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -8,7 +8,7 @@ apply plugin: "com.jfrog.bintray" ext { PUBLISH_GROUP_ID = 'co.zsmb' PUBLISH_ARTIFACT_ID = 'materialdrawer-kt' - PUBLISH_VERSION = '2.0.0' + PUBLISH_VERSION = '2.0.1' } android { @@ -27,7 +27,7 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - api 'com.mikepenz:materialdrawer:6.1.0' + api 'com.mikepenz:materialdrawer:6.1.1' implementation 'androidx.appcompat:appcompat:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'androidx.annotation:annotation:1.0.0'