-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependencies #16
Conversation
@@ -20,7 +20,7 @@ class MainActivity : AppCompatActivity() { | |||
|
|||
private fun setupViews() { | |||
findViewById<Button>(R.id.button_add_logs).setOnClickListener { | |||
(1..NUMBER_OF_LOGS_TO_ADD).forEach { | |||
repeat(NUMBER_OF_LOGS_TO_ADD) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a newer lint issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍🏽 thanks!
@@ -14,12 +14,8 @@ org.gradle.jvmargs=-Xmx6656m -Dfile.encoding=UTF-8 | |||
org.gradle.parallel=true | |||
|
|||
android.useAndroidX=true | |||
kapt.incremental.apt=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this line deleted?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some configuration has been deprecated or removed when updating Kotlin or Gradle. In this particular case, kapt was not even used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good job!
Update Android Logger dependencies