-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Update kotlin to 1.6.21 #162
Update kotlin to 1.6.21 #162
Conversation
0b74a7c
to
8dfc178
Compare
@@ -30,13 +29,13 @@ ext { | |||
rxAndroidVersion = '2.1.1' | |||
|
|||
// DI | |||
daggerVersion = '2.29.1' | |||
daggerVersion = '2.43.2' |
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.
dagger and glide had issues with kapt, so I had to update them
|
||
group='com.github.badoo.mvicore' | ||
|
||
android { | ||
compileSdkVersion 30 | ||
compileSdkVersion 31 |
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.
Updates to dagger caused the compile target to no longer be acceptable
} | ||
|
||
dependencies { | ||
implementation("com.android.tools.build:gradle:7.1.3") |
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.
In a follow up PR I will add versionCatalogs, and this will point to that. At the moment there is no easy way to access these build.gradle that specifies this, as this is an includedBuild
Considering I am planning to move to versionCatalog, hopefully this is temporarily acceptable.
import org.gradle.api.Plugin | ||
import org.gradle.api.Project | ||
|
||
internal abstract class MviCorePublishPlugin : Plugin<Project> { |
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 is quite simple for now, but if we decide to publish this on mavenCentral, we can amend this and all the binaries will work as expected.
2353d30
to
e7fd546
Compare
} | ||
|
||
dependencies { | ||
implementation("com.android.tools.build:gradle:7.2.2") |
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.
Will use version catalog in a future PR to avoid this duplication
developer { | ||
id.set("badoo") | ||
name.set("Badoo") | ||
email.set("mvicore@team.bumble.com") |
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.
Before releasing a new version I will ensure that this group email exists
e7fd546
to
d491ef1
Compare
d491ef1
to
793a168
Compare
Probably we do not need Idea Gradle plugin (change for a separate PR). https://docs.gradle.org/current/userguide/idea_plugin.html
|
793a168
to
43b3941
Compare
43b3941
to
ce510d9
Compare
Description
Updated to Kotlin 1.6.21
Check list
CHANGELOG.md
if required.