-
Notifications
You must be signed in to change notification settings - Fork 1.9k
feat: add basic wrapping to support compose #2201
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
base: feat/migrate-to-kotlin
Are you sure you want to change the base?
Conversation
app/build.gradle.kts
Outdated
id("org.jetbrains.kotlin.plugin.compose") | ||
id("org.jetbrains.compose") | ||
id("com.google.gms.google-services") | ||
id("kotlin-kapt") // ← kapt drives annotation processors |
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.
id("kotlin-kapt") // ← kapt drives annotation processors | |
id("kotlin-kapt") |
app/build.gradle.kts
Outdated
minSdk = Config.SdkVersions.min | ||
targetSdk = Config.SdkVersions.target | ||
versionName = Config.version | ||
versionCode = 1 |
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.
Let's get rid of all the extra whitespaces (across all files) - I don't think it's common to use this formatting in Kotlin (at least I've never seen before)
minSdk = Config.SdkVersions.min | |
targetSdk = Config.SdkVersions.target | |
versionName = Config.version | |
versionCode = 1 | |
minSdk = Config.SdkVersions.min | |
targetSdk = Config.SdkVersions.target | |
versionName = Config.version | |
versionCode = 1 |
build.gradle.kts
Outdated
@@ -19,6 +19,10 @@ buildscript { | |||
|
|||
plugins { | |||
id("com.github.ben-manes.versions") version "0.20.0" | |||
kotlin("multiplatform") version "1.9.22" apply false |
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.
Do we need Kotlin multiplatform ? 😬
Hey there! So you want to contribute to FirebaseUI? Before you file this pull request, follow these steps:
./gradlew check
to ensure the Travis build passes.