Fixed
Status Update
Comments
lc...@gmail.com <lc...@gmail.com> #2
Oh forgot to mention, one workaround is to arrange the arguments in the XML navgraph destination such that the arguments without defaultvalues to be declared first. like below
<dialog
android:id="@+id/NavCompFingerPrintAuthDialogFragment"
android:name="sg.ndi.fragment.NavCompFingerPrintAuthDialogFragment"
tools:layout="@layout/layout_fingerprint_authentication"
>
<argument
android:name="ownFragmentTag"
app:argType="string"
/>
<argument
android:name="requestId"
app:argType="integer"
app:nullable="false"
/>
<argument
android:name="positiveText"
app:argType="string"
app:nullable="true"
android:defaultValue="@null"
/>
<argument
android:name="negativeText"
app:argType="string"
app:nullable="true"
android:defaultValue="@null"
/>
<argument
android:name="generalErrorMsg"
app:argType="string"
app:nullable="true"
android:defaultValue="@null"
/>
</dialog>
jo...@gmail.com <jo...@gmail.com> #3
I have the same problem
XML:
<dialog
android:id="@+id/driveBlockedBottomSheetFragment"
android:name="com.infomaniak.drive.ui.bottomSheetDialogs.DriveBlockedBottomSheetDialog"
android:label="driveBlockedBottomSheetFragment"
tools:layout="@layout/fragment_bottom_sheet_information">
<argument
android:name="driveId"
android:defaultValue="0"
app:argType="integer" />
<argument
android:name="expirationDate"
app:argType="long" />
</dialog>
Generate class:
public data class DriveBlockedBottomSheetDialogArgs(
public val expirationDate: Long,
public val driveId: Int = 0
) : NavArgs {
public fun toBundle(): Bundle {
val result = Bundle()
result.putInt("driveId", this.driveId)
result.putLong("expirationDate", this.expirationDate)
return result
}
public fun toSavedStateHandle(): SavedStateHandle {
val result = SavedStateHandle()
result.set("driveId", this.driveId)
result.set("expirationDate", this.expirationDate)
return result
}
public companion object {
@JvmStatic
public fun fromBundle(bundle: Bundle): DriveBlockedBottomSheetDialogArgs {
bundle.setClassLoader(DriveBlockedBottomSheetDialogArgs::class.java.classLoader)
val __driveId : Int
if (bundle.containsKey("driveId")) {
__driveId = bundle.getInt("driveId")
} else {
__driveId = 0
}
val __expirationDate : Long
if (bundle.containsKey("expirationDate")) {
__expirationDate = bundle.getLong("expirationDate")
} else {
throw IllegalArgumentException("Required argument \"expirationDate\" is missing and does not have an android:defaultValue")
}
return DriveBlockedBottomSheetDialogArgs(__driveId, __expirationDate)
}
il...@google.com <il...@google.com>
ap...@google.com <ap...@google.com> #4
Project: platform/frameworks/support
Branch: androidx-main
commit 55d123066c4102566e836292330e3871b24681c2
Author: Jeremy Woods <jbwoods@google.com>
Date: Fri Sep 17 17:22:44 2021
Fix argument parameters generated in wrong order
With the recent change to ensure Kotlin always takes default parameters
last, we also needed to make sure the functions that create the
generated class (i.e. fromBundle/SavedStateHandle) generate arguments in
the proper order as well.
RelNote: "SafeArgs now generates the arguments for `fromBundle()` and
`fromSavedStateHandle()` in the proper parameter order."
Test: ./gradlew --rerun-tasks navigation:navigation-safe-args-generator:test
Bug: 200059831
Change-Id: I824a871363ff0aaf5fa5ef608f103582e7abfc61
M navigation/navigation-safe-args-generator/src/test/test-data/expected/kotlin_nav_writer_test/MainFragmentArgs.kt
M navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinNavWriter.kt
https://android-review.googlesource.com/1830462
Branch: androidx-main
commit 55d123066c4102566e836292330e3871b24681c2
Author: Jeremy Woods <jbwoods@google.com>
Date: Fri Sep 17 17:22:44 2021
Fix argument parameters generated in wrong order
With the recent change to ensure Kotlin always takes default parameters
last, we also needed to make sure the functions that create the
generated class (i.e. fromBundle/SavedStateHandle) generate arguments in
the proper order as well.
RelNote: "SafeArgs now generates the arguments for `fromBundle()` and
`fromSavedStateHandle()` in the proper parameter order."
Test: ./gradlew --rerun-tasks navigation:navigation-safe-args-generator:test
Bug: 200059831
Change-Id: I824a871363ff0aaf5fa5ef608f103582e7abfc61
M navigation/navigation-safe-args-generator/src/test/test-data/expected/kotlin_nav_writer_test/MainFragmentArgs.kt
M navigation/navigation-safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/kotlin/KotlinNavWriter.kt
jb...@google.com <jb...@google.com> #5
This has been fixed internally and will be available in the Navigation 2.4.0-alpha10
release.
ec...@gmail.com <ec...@gmail.com> #6
I'm still seeing this issue on version 2.5.2
jb...@google.com <jb...@google.com> #7
Please file a new issue with a minimal project reproducing what you are seeing.
Description
Component used: Navigation
Version used: 2.4.0-alpha09
Devices/Android versions reproduced on: Not device dependent, code generation issue
Safeargs plugin on 2.4.0-alpha09 since it implemented this behaviour change below
When generating arguments, Safe Args now puts parameters without default values before those with default values. (I89709, b/198493585)
This bahvious change seesms to cause the side effect of compilation time errors in the genrated argument files. As far as I know this affects both kotlin and java generated files.
e.g.
XML navgraph destination (
NavCompFingerPrintAuthDialogFragment
)As you can see the arguments with no default values are not defined first.
this will generate the argument data object shown below with the behavios change which puts the arguments with no default values first in the constructor.
Now the problem is that in the
NavCompFingerPrintAuthDialogFragmentArgs.fromBundle(bundle: Bundle): NavCompFingerPrintAuthDialogFragmentArgs
companion function does not use named arguments when creating aNavCompFingerPrintAuthDialogFragmentArgs
from a bundle. And it uses the arguments in the order that it was defined in the navgraph and not in the order that theNavCompFingerPrintAuthDialogFragmentArgs
data object expects in its constructor. The same issue also apples for the companion functionfromSavedStateHandle(savedStateHandle: SavedStateHandle):NavCompFingerPrintAuthDialogFragmentArgs
but compilation will fail at the earliest point so it was not reported in the error. But from what i can see in the genrated code, its will have the same problem too.One solution is to just use named arguments for kotlin generated files, but it does not solve the issue for java generated files. So perhaps putting the arguments in the order of the
behavior change
mention above shld solve the issue.