Move folders

This commit is contained in:
Joren 2024-04-29 17:38:29 +02:00
parent 1f17e6066f
commit 3352417e12
Signed by untrusted user who does not match committer: Joren
GPG Key ID: 280E33DFBC0F1B55
3 changed files with 4 additions and 7 deletions

View File

@ -1,4 +1,4 @@
package com.ti.mobpo.data package com.ti.mobpo.model
import com.google.gson.annotations.SerializedName import com.google.gson.annotations.SerializedName

View File

@ -1,7 +1,7 @@
package com.ti.mobpo.network package com.ti.mobpo.network
import com.ti.mobpo.data.PokemonDetails import com.ti.mobpo.model.PokemonDetails
import com.ti.mobpo.data.PokemonResponse import com.ti.mobpo.model.PokemonResponse
import retrofit2.Retrofit import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory import retrofit2.converter.gson.GsonConverterFactory
import retrofit2.http.GET import retrofit2.http.GET

View File

@ -2,15 +2,12 @@ package com.ti.mobpo.ui
import androidx.lifecycle.ViewModel import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope import androidx.lifecycle.viewModelScope
import com.ti.mobpo.data.PokemonDetails import com.ti.mobpo.model.PokemonDetails
import com.ti.mobpo.network.PokeApi import com.ti.mobpo.network.PokeApi
import com.ti.mobpo.network.PokeApiService
import kotlinx.coroutines.flow.MutableStateFlow import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow import kotlinx.coroutines.flow.StateFlow
import kotlinx.coroutines.flow.asStateFlow import kotlinx.coroutines.flow.asStateFlow
import kotlinx.coroutines.launch import kotlinx.coroutines.launch
import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
import java.io.IOException import java.io.IOException