File tree Expand file tree Collapse file tree 8 files changed +21
-20
lines changed
src/main/java/com/skydoves/powerspinner Expand file tree Collapse file tree 8 files changed +21
-20
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ allprojects {
3737And add a dependency code to your ** module** 's ` build.gradle ` file.
3838``` gradle
3939dependencies {
40- implementation "com.github.skydoves:powerspinner:1.1.7 "
40+ implementation "com.github.skydoves:powerspinner:1.1.8 "
4141}
4242```
4343## SNAPSHOT
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ android {
1414 buildFeatures {
1515 viewBinding true
1616 }
17+ compileOptions {
18+ sourceCompatibility 1.8
19+ targetCompatibility 1.8
20+ }
1721}
1822
1923dependencies {
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ buildscript {
33 repositories {
44 google()
55 mavenCentral()
6- jcenter()
76 }
87 dependencies {
98 classpath " com.android.tools.build:gradle:$versions . gradleBuildTool "
@@ -18,7 +17,6 @@ allprojects {
1817 repositories {
1918 google()
2019 mavenCentral()
21- jcenter()
2220 }
2321}
2422
Original file line number Diff line number Diff line change 11ext. versions = [
22 minSdk : 17 ,
33 compileSdk : 30 ,
4- versionCode : 18 ,
5- versionName : ' 1.1.7 ' ,
4+ versionCode : 19 ,
5+ versionName : ' 1.1.8 ' ,
66
77 gradleBuildTool : ' 4.1.3' ,
8- spotlessGradle : ' 5.12.1 ' ,
8+ spotlessGradle : ' 5.13.0 ' ,
99 ktlintGradle : ' 0.41.0' ,
10- dokkaGradle : ' 1.4.30 ' ,
11- mavenPublish : ' 0.13.0 ' ,
10+ dokkaGradle : ' 1.4.32 ' ,
11+ mavenPublish : ' 0.15.1 ' ,
1212
1313 kotlin : ' 1.4.31' ,
14- androidxAppcompat : ' 1.2 .0' ,
15- lifecycle : ' 2.2.0 ' ,
16- recyclerView : ' 1.2.0 ' ,
14+ androidxAppcompat : ' 1.3 .0' ,
15+ lifecycle : ' 2.3.1 ' ,
16+ recyclerView : ' 1.2.1 ' ,
1717 preference : ' 1.1.1' ,
1818
1919 // for demo
20- googleMaterial : ' 1.4.0-alpha02 '
20+ googleMaterial : ' 1.4.0'
2121]
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ systemProp.org.gradle.internal.http.socketTimeout=120000
3131GROUP =com.github.skydoves
3232POM_PACKAGING =aar
3333
34- VERSION_NAME =1.1.8 -SNAPSHOT
34+ VERSION_NAME =1.1.9 -SNAPSHOT
3535
3636POM_ARTIFACT_ID =powerspinner
3737POM_NAME =powerspinner
@@ -49,6 +49,3 @@ POM_LICENCE_DIST=repo
4949POM_DEVELOPER_ID =skydoves
5050POM_DEVELOPER_NAME =Jaewoong Eum
5151POM_DEVELOPER_URL =https://github.com/skydoves/
52-
53- RELEASE_REPOSITORY_URL =https://oss.sonatype.org/service/local/staging/deploy/maven2/
54- SNAPSHOT_REPOSITORY_URL =https://oss.sonatype.org/content/repositories/snapshots/
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-6.6.1 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.7 -all.zip
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22apply plugin : ' kotlin-android'
3- apply plugin : ' kotlin-kapt'
43apply plugin : ' org.jetbrains.dokka'
54apply from : " $rootDir /dependencies.gradle"
65
@@ -16,13 +15,17 @@ android {
1615 viewBinding true
1716 buildConfig false
1817 }
18+ compileOptions {
19+ sourceCompatibility 1.8
20+ targetCompatibility 1.8
21+ }
1922}
2023
2124dependencies {
2225 implementation " androidx.appcompat:appcompat:$versions . androidxAppcompat "
2326 implementation " androidx.recyclerview:recyclerview:$versions . recyclerView "
2427 implementation " androidx.preference:preference-ktx:$versions . preference "
25- kapt " androidx.lifecycle:lifecycle-compiler :$versions . lifecycle "
28+ implementation " androidx.lifecycle:lifecycle-common-java8 :$versions . lifecycle "
2629}
2730
2831kotlin {
Original file line number Diff line number Diff line change 1717package com.skydoves.powerspinner
1818
1919/* *
20- *
2120 * ☔ WhatIf is kotlin extensions for expressing a single if-else statement, nullable and boolean.
2221 *
2322 * [WhatIf](https://github.com/skydoves/WhatIf)
You can’t perform that action at this time.
0 commit comments