mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-04-26 10:48:39 +02:00
Feature/core repository separation (#44)
* Fixed wrong package name. Fixes #43 * Updated package name. Fixes #41 * Ignoring not-used warning - this graph is included in main graph * Separated repository from core. Fixes #42 * Removing adapter from recyclerView when view is destroyed to prevent leak. Fixes #40 * Updated new module graph Signed-off-by: Melih Aksoy <aksoy.melihcan@gmail.com>
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
|
||||
<variable
|
||||
name="viewModel"
|
||||
type="com.melih.list.ui.vm.LaunchesViewModel" />
|
||||
type="com.melih.launches.ui.vm.LaunchesViewModel" />
|
||||
</data>
|
||||
|
||||
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
||||
|
||||
@@ -1,14 +1,15 @@
|
||||
<?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/nav_launches"
|
||||
app:startDestination="@id/launchesFragment">
|
||||
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/nav_launches"
|
||||
app:startDestination="@id/launchesFragment"
|
||||
tools:ignore="UnusedNavigation">
|
||||
|
||||
<fragment
|
||||
android:id="@+id/launchesFragment"
|
||||
android:name="com.melih.list.ui.LaunchesFragment"
|
||||
android:label="LaunchesFragment"
|
||||
tools:layout="@layout/fragment_launches" />
|
||||
</navigation>
|
||||
<fragment
|
||||
android:id="@+id/launchesFragment"
|
||||
android:name="com.melih.launches.ui.LaunchesFragment"
|
||||
android:label="LaunchesFragment"
|
||||
tools:layout="@layout/fragment_launches" />
|
||||
</navigation>
|
||||
|
||||
Reference in New Issue
Block a user