From cff12ada9d11302da8409d15c48d6dc8b044c756 Mon Sep 17 00:00:00 2001 From: SuddenH4X Date: Sun, 22 Jan 2023 17:20:47 +0100 Subject: [PATCH 1/5] chore: update agp to 7.4.0 --- build.gradle | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index fe07147..8483929 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { maven { url 'https://plugins.gradle.org/m2/' } } dependencies { - classpath 'com.android.tools.build:gradle:7.3.0' + classpath 'com.android.tools.build:gradle:7.4.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'de.mannodermaus.gradle.plugins:android-junit5:1.8.2.1' classpath 'org.jlleitschuh.gradle:ktlint-gradle:11.0.0' diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 09abcbb..b1c675f 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip From c0e3e94df1cd3ecbe43765b714a05bec5d2c045e Mon Sep 17 00:00:00 2001 From: SuddenH4X Date: Sun, 22 Jan 2023 17:21:17 +0100 Subject: [PATCH 2/5] chore: update kotlin to 1.8.0 --- build.gradle | 2 +- exampleapp/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 8483929..d4a0358 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlin_version = '1.7.10' + ext.kotlin_version = '1.8.0' repositories { google() maven { url 'https://plugins.gradle.org/m2/' } diff --git a/exampleapp/build.gradle b/exampleapp/build.gradle index df1df70..fc30e87 100644 --- a/exampleapp/build.gradle +++ b/exampleapp/build.gradle @@ -35,7 +35,7 @@ android { } composeOptions { - kotlinCompilerExtensionVersion '1.3.0' + kotlinCompilerExtensionVersion '1.4.0' } } From 2fdfdfe8203795ef4c2f289b696de202b1eb2fa0 Mon Sep 17 00:00:00 2001 From: SuddenH4X Date: Sun, 22 Jan 2023 17:21:46 +0100 Subject: [PATCH 3/5] chore: update more dependencies --- exampleapp/build.gradle | 12 ++++++------ library/build.gradle | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/exampleapp/build.gradle b/exampleapp/build.gradle index fc30e87..ba57d23 100644 --- a/exampleapp/build.gradle +++ b/exampleapp/build.gradle @@ -41,13 +41,13 @@ android { dependencies { implementation project(':library') - implementation 'androidx.activity:activity-compose:1.6.0' - implementation 'androidx.compose.material:material:1.2.1' - implementation 'androidx.compose.ui:ui-tooling:1.2.1' - implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'androidx.activity:activity-compose:1.6.1' + implementation 'androidx.compose.material:material:1.3.1' + implementation 'androidx.compose.ui:ui-tooling:1.3.3' + implementation 'androidx.appcompat:appcompat:1.6.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation "com.google.android.material:compose-theme-adapter:1.1.19" - implementation 'com.google.android.material:material:1.6.1' + implementation "com.google.android.material:compose-theme-adapter:1.2.1" + implementation 'com.google.android.material:material:1.7.0' } afterEvaluate { diff --git a/library/build.gradle b/library/build.gradle index 295d78e..f8252d2 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -39,13 +39,13 @@ def junitVersion = "5.9.0" dependencies { implementation 'androidx.annotation:annotation:1.5.0' - implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'androidx.appcompat:appcompat:1.6.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.core:core-ktx:1.9.0' - implementation 'com.google.android.material:material:1.6.1' + implementation 'com.google.android.material:material:1.7.0' - implementation 'com.google.android.play:review:2.0.0' - implementation 'com.google.android.play:review-ktx:2.0.0' + implementation 'com.google.android.play:review:2.0.1' + implementation 'com.google.android.play:review-ktx:2.0.1' testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion" testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion" From 6074ac8ab01ad60022e8f9f203eb45e79d94581c Mon Sep 17 00:00:00 2001 From: SuddenH4X Date: Sun, 22 Jan 2023 17:31:36 +0100 Subject: [PATCH 4/5] chore: bump library version to 2.6.0 --- library/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/build.gradle b/library/build.gradle index f8252d2..56adfcf 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: "de.mannodermaus.android-junit5" -def version = "2.5.0" +def version = "2.6.0" android { namespace 'com.suddenh4x.ratingdialog' From a6fa0ee2ae01ba9f968e02d37e52ca32384cc619 Mon Sep 17 00:00:00 2001 From: SuddenH4X Date: Sun, 22 Jan 2023 17:32:10 +0100 Subject: [PATCH 5/5] docs: update library version in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c610474..8459e07 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ The library supports API level 14 and higher. You can simply include it in your ```groovy dependencies { ... - implementation 'com.suddenh4x.ratingdialog:awesome-app-rating:2.5.0' + implementation 'com.suddenh4x.ratingdialog:awesome-app-rating:2.6.0' } ``` @@ -523,7 +523,7 @@ The following things are highly recommended to not annoy the user, which in turn ## License ``` -Copyright (C) 2022 SuddenH4X +Copyright (C) 2023 SuddenH4X Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.