Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Nov 16, 2024
1 parent 42a8afd commit fb3fe5e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@ fun NavGraphBuilder.feedGraph(
composable(
route = FeedDestination.route,
arguments = listOf(
navArgument("request_token") { type = NavType.StringType },
navArgument("approved") { type = NavType.BoolType },
navArgument("request_token") {
type = NavType.StringType
nullable = true
},
navArgument("approved") {
type = NavType.BoolType
defaultValue = false
}
),
deepLinks = listOf(
navDeepLink { uriPattern = "movies://redirect_url?request_token={request_token}&approved={approved}" }
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ androidx-test-uiautomator = "2.3.0"
androidx-test-espresso = "3.6.1"
androidx-test-espresso-device = "1.0.1"
androidx-work = "2.10.0"
compose = "1.6.11" # 1.7.0 & 1.7.1 crash on iOS
jetbrains-androidx-navigation-compose = "2.8.0-alpha02" # 2.8.0-alpha08 crash androidApp
jetbrains-androidx-lifecycle-viewmodel-compose = "2.8.4" # 2.8.1 crash desktopApp
compose = "1.6.11"
jetbrains-androidx-navigation-compose = "2.8.0-alpha02"
jetbrains-androidx-lifecycle-viewmodel-compose = "2.8.4"
jetbrains-androidx-core-bundle = "1.0.1"
detekt = "1.23.7"
spotless = "6.25.0"
Expand Down
1 change: 1 addition & 0 deletions iosApp/iosApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CADisableMinimumFrameDurationOnPhone</key><true/>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
Expand Down

0 comments on commit fb3fe5e

Please sign in to comment.