Ya
This script fetches all of the files from the currently deployed version of a Firebase Hosting site. You must be signed in via the Firebase CLI and have "Site Viewer" permission on the site in question to be able to properly run the script.
npx https://gist.github.com/mbleigh/9c8680cf319ace2f506f57380da66e7d <site_name>
This file contains 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
package com.toquemedialabs.crossaudio | |
import android.annotation.SuppressLint | |
import android.net.Uri | |
import android.os.Bundle | |
import android.widget.Button | |
import android.widget.Toast | |
import androidx.appcompat.app.AppCompatActivity | |
import com.google.android.exoplayer2.ExoPlayer | |
import com.google.android.exoplayer2.MediaItem |
This file contains 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
interface iAppState { | |
refreshPlaylist: number; | |
refreshHome: number; | |
userLogged: AccountUserType | undefined | null; | |
refreshApp: number; | |
context: ObjectType | null; | |
suggestedTracks: AlbumType[]; | |
setRefreshApp: () => void; | |
setContext: (context: ObjectType) => void; | |
setRefreshPlaylist: () => void; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 Colors { | |
companion object { | |
val arrayColors = listOf( | |
Color(0xFF910101), | |
Color(0xFF0D0191), | |
Color(0xFF5D8238), | |
Color(0xFF000000), | |
Color(0xFFB47D3C), | |
Color(0xFF6D0D75), | |
Color(0xFF9C9C9C) |