Skip to content
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 libs #108

Merged
merged 25 commits into from
Jan 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8f8a068
Merge pull request #105 from VictorKabata/develop
VictorKabata Nov 7, 2023
5b0096e
Update gradleVersionUpdate plugin
VictorKabata Dec 29, 2023
b603901
Update koin libs
VictorKabata Dec 29, 2023
c2010f8
Update kotlinxDateTime
VictorKabata Dec 29, 2023
1e369a2
Update ktor
VictorKabata Dec 29, 2023
6c12bf2
Update kotlinxSerializationJson
VictorKabata Dec 29, 2023
0264b7d
Update imageLoader
VictorKabata Dec 29, 2023
4777b74
Update googleService, firebaseAppDistribution and firebaseCrashlytics
VictorKabata Dec 29, 2023
61abe2f
Update material lib
VictorKabata Dec 29, 2023
94f0a1a
Update firebase BOM
VictorKabata Dec 29, 2023
42896e4
Update leak canary lib
VictorKabata Dec 29, 2023
487ddd7
Update precompose lib
VictorKabata Dec 29, 2023
61be00f
Update mockk and robolectric
VictorKabata Jan 1, 2024
fc5fdad
Update ktLint and detekt
VictorKabata Jan 1, 2024
a586676
Update kotlin to v1.9.21 and updated compose multiplatform and compiler
VictorKabata Jan 1, 2024
4f412a7
Update kotlin-test dependency
VictorKabata Jan 1, 2024
ee95bdc
Merge branch 'develop' into update-libs
VictorKabata Jan 1, 2024
fe61972
Update .gitignore
VictorKabata Jan 1, 2024
e5ae5fa
Added iOS project file
VictorKabata Jan 1, 2024
798155a
Fix merge conflicts
VictorKabata Jan 1, 2024
c02d3ca
Linting
VictorKabata Jan 1, 2024
d009bfd
Update .editorconfig
VictorKabata Jan 1, 2024
bd2ee2e
Downgrade ktLint version
VictorKabata Jan 1, 2024
3042e61
Update .editorconfig
VictorKabata Jan 1, 2024
7af2a0c
Downgrade detekt version
VictorKabata Jan 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[*.{kt,kts}]
disabled_rules = import-ordering, experimental:argument-list-wrapping,indent
insert_final_newline = true
disabled_rules = import-ordering, experimental:argument-list-wrapping, indent
insert_final_newline = true
# ij_kotlin_allow_trailing_comma = false
# ij_kotlin_allow_trailing_comma_on_call_site = false
# indent_size = unset
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ local.properties
appiOS/Pods/
appiOS/Podfile.lock
*.podspec
*.pbxproj
*.xcuserstate
2 changes: 1 addition & 1 deletion appAndroid/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.5"
kotlinCompilerExtensionVersion = "1.5.7"
}
namespace = "com.vickbt.notflix"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ fun MainWindow(applicationScope: ApplicationScope) {
title = "Notflix",
state = rememberWindowState(
position = WindowPosition.Aligned(Alignment.Center),
width = 1080.dp, // or Dp.Unspecified,
height = 800.dp, // or Dp.Unspecified,
width = 1080.dp,
height = 800.dp,
)
) {
MainScreen()
Expand Down
Loading
Loading