Skip to content

Commit

Permalink
Merge pull request #71 from skydoves/bump/dependencies
Browse files Browse the repository at this point in the history
Release 1.1.8
  • Loading branch information
skydoves committed Jul 7, 2021
2 parents 582b9d7 + 219b238 commit 5d3e3af
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ allprojects {
And add a dependency code to your **module**'s `build.gradle` file.
```gradle
dependencies {
implementation "com.github.skydoves:powerspinner:1.1.7"
implementation "com.github.skydoves:powerspinner:1.1.8"
}
```
## SNAPSHOT
Expand Down
4 changes: 4 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ android {
buildFeatures {
viewBinding true
}
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
}

dependencies {
Expand Down
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$versions.gradleBuildTool"
Expand All @@ -18,7 +17,6 @@ allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}

Expand Down
18 changes: 9 additions & 9 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
ext.versions = [
minSdk : 17,
compileSdk : 30,
versionCode : 18,
versionName : '1.1.7',
versionCode : 19,
versionName : '1.1.8',

gradleBuildTool : '4.1.3',
spotlessGradle : '5.12.1',
spotlessGradle : '5.13.0',
ktlintGradle : '0.41.0',
dokkaGradle : '1.4.30',
mavenPublish : '0.13.0',
dokkaGradle : '1.4.32',
mavenPublish : '0.15.1',

kotlin : '1.4.31',
androidxAppcompat: '1.2.0',
lifecycle : '2.2.0',
recyclerView : '1.2.0',
androidxAppcompat: '1.3.0',
lifecycle : '2.3.1',
recyclerView : '1.2.1',
preference : '1.1.1',

// for demo
googleMaterial : '1.4.0-alpha02'
googleMaterial : '1.4.0'
]
5 changes: 1 addition & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ systemProp.org.gradle.internal.http.socketTimeout=120000
GROUP=com.github.skydoves
POM_PACKAGING=aar

VERSION_NAME=1.1.8-SNAPSHOT
VERSION_NAME=1.1.9-SNAPSHOT

POM_ARTIFACT_ID=powerspinner
POM_NAME=powerspinner
Expand All @@ -49,6 +49,3 @@ POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=skydoves
POM_DEVELOPER_NAME=Jaewoong Eum
POM_DEVELOPER_URL=https://github.com/skydoves/

RELEASE_REPOSITORY_URL=https://oss.sonatype.org/service/local/staging/deploy/maven2/
SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots/
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-6.6.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
7 changes: 5 additions & 2 deletions powerspinner/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'org.jetbrains.dokka'
apply from: "$rootDir/dependencies.gradle"

Expand All @@ -16,13 +15,17 @@ android {
viewBinding true
buildConfig false
}
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
}

dependencies {
implementation "androidx.appcompat:appcompat:$versions.androidxAppcompat"
implementation "androidx.recyclerview:recyclerview:$versions.recyclerView"
implementation "androidx.preference:preference-ktx:$versions.preference"
kapt "androidx.lifecycle:lifecycle-compiler:$versions.lifecycle"
implementation "androidx.lifecycle:lifecycle-common-java8:$versions.lifecycle"
}

kotlin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package com.skydoves.powerspinner

/**
*
* ☔ WhatIf is kotlin extensions for expressing a single if-else statement, nullable and boolean.
*
* [WhatIf](https://github.com/skydoves/WhatIf)
Expand Down

0 comments on commit 5d3e3af

Please sign in to comment.