Я делаю простой навигационный график, и навигационные компоненты направления не генерируются. Вот график навигации:
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/ratings_nav_graph"
app:startDestination="@id/ratingReportThanksFragment">
<fragment
android:id="@+id/ratingReportThanksFragment"
android:name="media.luminary.phone.luminary.screens.rating.RatingReportThanksFragment"
android:label="RatingReportThanksFragment"
tools:layout="@layout/fragment_rating_report_thanks" >
<argument
android:name="podcastUUID"
app:argType="string" />
<action
android:id="@+id/action_ratingReportThanksFragment_to_podcastDetailsFragment"
app:destination="@id/podcastDetailsFragment"
app:enterAnim="@anim/fade_in_left"
app:exitAnim="@anim/fade_out"
app:popUpTo="@id/podcastDetailsFragment" />
</fragment>
<fragment
android:id="@+id/podcastDetailsFragment"
android:name="media.luminary.phone.luminary.screens.podcast.PodcastDetailsFragment"
android:label="PodcastDetailsFragment"
tools:layout="@layout/fragment_podcast_details_old"/>
</navigation>
Это было частью большого навигационного графика, но я разделил его, чтобы посмотреть, сгенерирует ли действие. Это не так. Я ожидаю, что он сгенерирует файл с именем RatingsNavGraphDirections.kt
Что я делаю не так?