Skip to content

Commit

Permalink
Update gradle, library versions, Bump to 1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
faruktoptas committed Jun 10, 2021
1 parent 67844f4 commit a065b31
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class FancyImageView : AppCompatImageView {
moveTo(presenter.circleCenterX.toFloat(), presenter.circleCenterY.toFloat())
addCircle(presenter.circleCenterX.toFloat(), presenter.circleCenterY.toFloat(),
presenter.circleRadius(animCounter, animMoveFactor), Path.Direction.CW)
canvas.drawPath(this, circleBorderPaint)
canvas.drawPath(this, circleBorderPaint!!)
}
}
}
Expand All @@ -180,7 +180,7 @@ class FancyImageView : AppCompatImageView {
reset()
moveTo(presenter.circleCenterX.toFloat(), presenter.circleCenterY.toFloat())
addRoundRect(rectF, roundRectRadius.toFloat(), roundRectRadius.toFloat(), Path.Direction.CW)
canvas.drawPath(this, circleBorderPaint)
canvas.drawPath(this, circleBorderPaint!!)
}
}
}
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-6.1.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
10 changes: 5 additions & 5 deletions versions.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
buildscript {
ext.kotlin_version = '1.4.10'
ext.compile_sdk_version = 28
ext.compile_sdk_version = 29
ext.min_sdk_version = 14
ext.target_sdk_version = 28
ext.version_name = '1.3.5'
ext.appcompat = '1.2.0'
ext.material = '1.2.1'
ext.target_sdk_version = 29
ext.version_name = '1.3.6'
ext.appcompat = '1.3.0'
ext.material = '1.3.0'
}

0 comments on commit a065b31

Please sign in to comment.