From 8a515fd34aeba4a14d7a460efa1f29a56ae6dc21 Mon Sep 17 00:00:00 2001 From: Andrew Beck Date: Fri, 17 Dec 2021 18:52:16 +0000 Subject: [PATCH] Update for Release 0.0.0.3 --- README.md | 2 +- app/build.gradle | 8 ++++---- fixedheadertablelayout/build.gradle | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0d39c92..3d73617 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ allprojects { Add the following dependency into your module's `build.gradle`: ``` dependencies { - implementation 'com.github.Zardozz:fixedheadertablelayout:0.0.0.2' + implementation 'com.github.Zardozz:fixedheadertablelayout:0.0.0.3' } ``` diff --git a/app/build.gradle b/app/build.gradle index cc0e8f8..6edc3a0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -64,14 +64,14 @@ if (keystorePropertiesFile.exists()) { } android { - compileSdkVersion 29 + compileSdkVersion 30 defaultConfig { applicationId "com.github.zardozz.fixedheadertablelayoutsample" minSdkVersion 16 - targetSdkVersion 29 - versionCode 1 - versionName "0.0.0.1" + targetSdkVersion 30 + versionCode 3 + versionName "0.0.0.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } diff --git a/fixedheadertablelayout/build.gradle b/fixedheadertablelayout/build.gradle index c66dde4..f119599 100644 --- a/fixedheadertablelayout/build.gradle +++ b/fixedheadertablelayout/build.gradle @@ -28,7 +28,7 @@ plugins { ext { PUBLISH_GROUP_ID = 'com.github.Zardozz' - PUBLISH_VERSION = '0.0.0.2' + PUBLISH_VERSION = '0.0.0.3' PUBLISH_ARTIFACT_ID = 'fixedheadertablelayout' }