Skip to content

Commit

Permalink
Merge pull request #1 from germainkevinbusiness/master
Browse files Browse the repository at this point in the history
Updated dependencies & made some other minor adjustments
  • Loading branch information
kevingermainbusiness authored Jan 5, 2022
2 parents 65c6882 + 735e49d commit 7c79d36
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
minSdk 21
targetSdk 31
versionCode 1
versionName "1.0.9"
versionName "1.0.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
2 changes: 1 addition & 1 deletion recyclerview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ afterEvaluate {
// You can then customize attributes of the publication as shown below.
groupId = 'com.github.kevingermainbusiness'
artifactId = 'final'
version = '1.0.14'
version = '1.0.15'
}
}
}
Expand Down
5 changes: 1 addition & 4 deletions recyclerview/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kevincodes.recyclerview">

</manifest>
<manifest package="com.kevincodes.recyclerview" />
Original file line number Diff line number Diff line change
Expand Up @@ -512,9 +512,7 @@ data class ItemDecorator(
(viewHolder.itemView.left + mCalculatedHorizontalMargin + it.intrinsicWidth).toInt(),
top + iconSize
)
mIconTintFromStartToEnd?.let { iconTintColor ->
it.colorFilter(iconTintColor)
}
mIconTintFromStartToEnd.apply { it.colorFilter(this) }
it.draw(canvas)
}
}
Expand Down Expand Up @@ -582,9 +580,7 @@ data class ItemDecorator(
(viewHolder.itemView.right - mCalculatedHorizontalMargin).toInt(),
top + it.intrinsicHeight
)
mIconTintFromEndToStart?.let { iconTintColor ->
it.colorFilter(iconTintColor)
}
mIconTintFromEndToStart.apply { it.colorFilter(this) }
it.draw(canvas)
}
}
Expand Down

0 comments on commit 7c79d36

Please sign in to comment.