From 7475a15f66e0146a3d5ed093f37851788621cfa6 Mon Sep 17 00:00:00 2001 From: iamageo Date: Sat, 3 Jun 2023 20:32:02 -0300 Subject: [PATCH] update library version and update compileSdkVersion to 33 --- .idea/codeStyles/Project.xml | 123 +++++++++++++++++++++++++++ .idea/codeStyles/codeStyleConfig.xml | 5 ++ .idea/kotlinc.xml | 6 ++ library/build.gradle | 8 +- 4 files changed, 138 insertions(+), 4 deletions(-) create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/kotlinc.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..7643783 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,123 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..79ee123 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..0fc3113 --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/library/build.gradle b/library/build.gradle index 6dd1a58..13d4c8c 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -5,15 +5,15 @@ plugins { } group = 'com.github.iamageo' -version = '1.0.1' +version = '1.0.2' android { - compileSdkVersion 31 + compileSdkVersion 33 buildToolsVersion "31.0.0" defaultConfig { minSdkVersion 19 - targetSdkVersion 31 + targetSdkVersion 33 versionCode 1 versionName "1.1" @@ -50,7 +50,7 @@ afterEvaluate { from components.release groupId = 'com.github.iamageo' artifactId = 'another_read_more' - version = '1.0.1' + version = '1.0.2' } } }