This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed interface Content<out Data> { | |
data object Loading : Content<Nothing> | |
data class Success<out Data>( | |
val data: Data, | |
val refresh: LoadState = LoadState.NotLoading, | |
) : Content<Data> | |
data object Error : Content<Nothing> | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AvdId=Nexus_5X_API_26 | |
PlayStore.enabled=false | |
abi.type=x86_64 | |
avd.ini.displayname=Nexus 5X API 26 | |
avd.ini.encoding=UTF-8 | |
disk.dataPartition.size=800M | |
fastboot.chosenSnapshotFile= | |
fastboot.forceChosenSnapshotBoot=no | |
fastboot.forceColdBoot=no | |
fastboot.forceFastBoot=yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class dowlandmes extends AsyncTask<my, Void, ArrayList> { | |
@Override | |
protected void onPreExecute() { | |
super.onPreExecute(); | |
} | |
/** | |
* Получаем все продукт из url | |
*/ |