Skip to content

Commit

Permalink
Release 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhuinden committed Jan 15, 2021
1 parent edcbc98 commit 569c49f
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 19 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ def testResultsDir = "${rootProject.buildDir}/test-results"
buildscript {

ext.kotlin_version = '1.4.21'
ext.android_plugin_version = '4.0.1'
ext.android_plugin_version = '4.1.1'
ext.sdkVersion = 29
ext.minimumSdkVersion = 14
ext.databinding_version = '4.0.1'
ext.viewbinding_version = '4.0.1'
ext.databinding_version = '4.1.1'
ext.viewbinding_version = '4.1.1'

ext.junit_version = '4.13'
ext.mockito_version = '3.3.3'
Expand Down
6 changes: 4 additions & 2 deletions example-databinding/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ android {
minifyEnabled false
}
}
dataBinding {
enabled = true

buildFeatures {
dataBinding true
viewBinding false
}

lintOptions {
Expand Down
9 changes: 3 additions & 6 deletions example-viewbinding/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@ android {
}
}

dataBinding {
enabled = true
}

viewBinding {
enabled = true
buildFeatures {
dataBinding true
viewBinding true
}

lintOptions {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
android.enableJetifier=true
android.enableJetifier=false
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1536m

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Dec 07 15:45:53 JST 2019
#Fri Jan 15 12:44:58 CET 2021
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
2 changes: 1 addition & 1 deletion library-databinding/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ POM_DESCRIPTION=Library to help with complex RecyclerViews
POM_BINTRAY_NAME=groupie-databinding
POM_ARTIFACT_ID=groupie-databinding
POM_PACKAGING=aar
POM_VERSION=2.8.1
POM_VERSION=2.9.0
1 change: 0 additions & 1 deletion library-kotlin-android-extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ android {
dependencies {
compileOnly project(':library')
compileOnly "androidx.recyclerview:recyclerview:1.1.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion library-kotlin-android-extensions/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ POM_DESCRIPTION=Library to help with complex RecyclerViews
POM_BINTRAY_NAME=groupie-kotlin-android-extensions
POM_ARTIFACT_ID=groupie-kotlin-android-extensions
POM_PACKAGING=aar
POM_VERSION=2.8.1
POM_VERSION=2.9.0
2 changes: 1 addition & 1 deletion library-viewbinding/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ POM_DESCRIPTION=Library to help with complex RecyclerViews
POM_BINTRAY_NAME=groupie-viewbinding
POM_ARTIFACT_ID=groupie-viewbinding
POM_PACKAGING=aar
POM_VERSION=2.8.1
POM_VERSION=2.9.0
2 changes: 1 addition & 1 deletion library/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ POM_DESCRIPTION=Library to help with complex RecyclerViews
POM_BINTRAY_NAME=groupie
POM_ARTIFACT_ID=groupie
POM_PACKAGING=aar
POM_VERSION=2.8.1
POM_VERSION=2.9.0

0 comments on commit 569c49f

Please sign in to comment.