Skip to content

Commit

Permalink
Merge pull request #84 from SuddenH4X/release/2.6.0
Browse files Browse the repository at this point in the history
Release/2.6.0
  • Loading branch information
SuddenH4X authored Jan 22, 2023
2 parents 4b0bbad + a6fa0ee commit f7bd30a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
buildscript {
ext.kotlin_version = '1.7.10'
ext.kotlin_version = '1.8.0'
repositories {
google()
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'
Expand Down
14 changes: 7 additions & 7 deletions exampleapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion '1.3.0'
kotlinCompilerExtensionVersion '1.4.0'
}
}

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 {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 5 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit f7bd30a

Please sign in to comment.