refactor: move controller to dedicated pakckage

This commit is contained in:
Tomás Villegas
2026-02-25 11:17:22 -03:00
parent b38da77393
commit ecec442e4b
4 changed files with 5 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
package com.cappielloantonio.tempo.ui.activity.base;
package com.cappielloantonio.tempo.navigation;
import androidx.annotation.OptIn;
import androidx.media3.common.util.UnstableApi;

View File

@@ -1,4 +1,4 @@
package com.cappielloantonio.tempo.ui.activity.base;
package com.cappielloantonio.tempo.navigation;
import android.view.View;

View File

@@ -1,4 +1,4 @@
package com.cappielloantonio.tempo.ui.activity.base;
package com.cappielloantonio.tempo.navigation;
import android.content.Context;
import android.view.View;

View File

@@ -15,9 +15,6 @@ import android.widget.FrameLayout;
import androidx.annotation.NonNull;
import androidx.core.splashscreen.SplashScreen;
import androidx.core.view.WindowCompat;
import androidx.core.view.WindowInsetsCompat;
import androidx.core.view.WindowInsetsControllerCompat;
import androidx.drawerlayout.widget.DrawerLayout;
import androidx.fragment.app.FragmentManager;
import androidx.lifecycle.ViewModelProvider;
@@ -28,7 +25,6 @@ import androidx.media3.common.MimeTypes;
import androidx.media3.common.util.UnstableApi;
import androidx.navigation.NavController;
import androidx.navigation.fragment.NavHostFragment;
import androidx.navigation.ui.NavigationUI;
import com.cappielloantonio.tempo.App;
import com.cappielloantonio.tempo.BuildConfig;
@@ -38,9 +34,8 @@ import com.cappielloantonio.tempo.databinding.ActivityMainBinding;
import com.cappielloantonio.tempo.github.utils.UpdateUtil;
import com.cappielloantonio.tempo.service.MediaManager;
import com.cappielloantonio.tempo.ui.activity.base.BaseActivity;
import com.cappielloantonio.tempo.ui.activity.base.NavigationController;
import com.cappielloantonio.tempo.ui.activity.base.NavigationDelegate;
import com.cappielloantonio.tempo.ui.activity.base.NavigationHelper;
import com.cappielloantonio.tempo.navigation.NavigationDelegate;
import com.cappielloantonio.tempo.navigation.NavigationHelper;
import com.cappielloantonio.tempo.ui.dialog.ConnectionAlertDialog;
import com.cappielloantonio.tempo.ui.dialog.GithubTempoUpdateDialog;
import com.cappielloantonio.tempo.ui.dialog.ServerUnreachableDialog;