Feature/debug menu (#1645)
* Reorganised cells * Clipping content * Simplifying Cell and leaving responsibility to modifier and content * Fixing animations Also fixing compose copy that wasn't set up properly... * Debug menu Added a debug menu It can be accessed from the settings page or via an app shortcut (from the app icon) * Finalising the debug menu We can now switch environments between mainnet and testnet * Update app/src/main/java/org/thoughtcrime/securesms/debugmenu/DebugMenu.kt Co-authored-by: AL-Session <160798022+AL-Session@users.noreply.github.com> --------- Co-authored-by: AL-Session <160798022+AL-Session@users.noreply.github.com>fix/emoji-reactions-crash
parent
bfbe4a8fd2
commit
1393335121
@ -0,0 +1,21 @@
|
||||
package org.thoughtcrime.securesms.debugmenu
|
||||
|
||||
import android.os.Bundle
|
||||
import androidx.appcompat.app.AppCompatActivity
|
||||
import dagger.hilt.android.AndroidEntryPoint
|
||||
import org.thoughtcrime.securesms.ui.setComposeContent
|
||||
|
||||
|
||||
@AndroidEntryPoint
|
||||
class DebugActivity : AppCompatActivity() {
|
||||
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
|
||||
setComposeContent {
|
||||
DebugMenuScreen(
|
||||
onClose = { finish() }
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,172 @@
|
||||
package org.thoughtcrime.securesms.debugmenu
|
||||
|
||||
import androidx.compose.foundation.background
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.ColumnScope
|
||||
import androidx.compose.foundation.layout.Spacer
|
||||
import androidx.compose.foundation.layout.fillMaxSize
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.rememberScrollState
|
||||
import androidx.compose.foundation.verticalScroll
|
||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||
import androidx.compose.material3.Scaffold
|
||||
import androidx.compose.material3.SnackbarHost
|
||||
import androidx.compose.material3.SnackbarHostState
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.LaunchedEffect
|
||||
import androidx.compose.runtime.remember
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import network.loki.messenger.BuildConfig
|
||||
import network.loki.messenger.R
|
||||
import org.thoughtcrime.securesms.debugmenu.DebugMenuViewModel.Commands.ChangeEnvironment
|
||||
import org.thoughtcrime.securesms.debugmenu.DebugMenuViewModel.Commands.HideEnvironmentWarningDialog
|
||||
import org.thoughtcrime.securesms.debugmenu.DebugMenuViewModel.Commands.ShowEnvironmentWarningDialog
|
||||
import org.thoughtcrime.securesms.ui.AlertDialog
|
||||
import org.thoughtcrime.securesms.ui.Cell
|
||||
import org.thoughtcrime.securesms.ui.DialogButtonModel
|
||||
import org.thoughtcrime.securesms.ui.GetString
|
||||
import org.thoughtcrime.securesms.ui.LoadingDialog
|
||||
import org.thoughtcrime.securesms.ui.components.BackAppBar
|
||||
import org.thoughtcrime.securesms.ui.components.DropDown
|
||||
import org.thoughtcrime.securesms.ui.theme.LocalColors
|
||||
import org.thoughtcrime.securesms.ui.theme.LocalDimensions
|
||||
import org.thoughtcrime.securesms.ui.theme.LocalType
|
||||
import org.thoughtcrime.securesms.ui.theme.PreviewTheme
|
||||
import org.thoughtcrime.securesms.ui.theme.bold
|
||||
|
||||
@OptIn(ExperimentalMaterial3Api::class)
|
||||
@Composable
|
||||
fun DebugMenu(
|
||||
uiState: DebugMenuViewModel.UIState,
|
||||
sendCommand: (DebugMenuViewModel.Commands) -> Unit,
|
||||
modifier: Modifier = Modifier,
|
||||
onClose: () -> Unit
|
||||
){
|
||||
val snackbarHostState = remember { SnackbarHostState() }
|
||||
|
||||
Scaffold(
|
||||
modifier = modifier.fillMaxSize(),
|
||||
snackbarHost = {
|
||||
SnackbarHost(hostState = snackbarHostState)
|
||||
}
|
||||
) { contentPadding ->
|
||||
// display a snackbar when required
|
||||
LaunchedEffect(uiState.snackMessage) {
|
||||
if(!uiState.snackMessage.isNullOrEmpty()){
|
||||
snackbarHostState.showSnackbar(uiState.snackMessage)
|
||||
}
|
||||
}
|
||||
|
||||
// Alert dialogs
|
||||
if (uiState.showEnvironmentWarningDialog) {
|
||||
AlertDialog(
|
||||
onDismissRequest = { sendCommand(HideEnvironmentWarningDialog) },
|
||||
title = "Are you sure you want to switch environments?",
|
||||
text = "Changing this setting will result in all conversations and Snode data being cleared...",
|
||||
showCloseButton = false, // don't display the 'x' button
|
||||
buttons = listOf(
|
||||
DialogButtonModel(
|
||||
text = GetString(R.string.cancel),
|
||||
contentDescription = GetString(R.string.cancel),
|
||||
onClick = { sendCommand(HideEnvironmentWarningDialog) }
|
||||
),
|
||||
DialogButtonModel(
|
||||
text = GetString(R.string.ok),
|
||||
contentDescription = GetString(R.string.ok),
|
||||
onClick = { sendCommand(ChangeEnvironment) }
|
||||
)
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
if (uiState.showEnvironmentLoadingDialog) {
|
||||
LoadingDialog(title = "Changing Environment...")
|
||||
}
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.padding(contentPadding)
|
||||
.fillMaxSize()
|
||||
.background(color = LocalColors.current.background)
|
||||
) {
|
||||
// App bar
|
||||
BackAppBar(title = "Debug Menu", onBack = onClose)
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.padding(horizontal = LocalDimensions.current.spacing)
|
||||
.verticalScroll(rememberScrollState())
|
||||
) {
|
||||
// Info pane
|
||||
DebugCell("App Info") {
|
||||
Text(
|
||||
text = "Version: ${BuildConfig.VERSION_NAME} (${BuildConfig.VERSION_CODE} - ${
|
||||
BuildConfig.GIT_HASH.take(
|
||||
6
|
||||
)
|
||||
})",
|
||||
style = LocalType.current.base
|
||||
)
|
||||
}
|
||||
|
||||
// Environment
|
||||
DebugCell("Environment") {
|
||||
DropDown(
|
||||
modifier = Modifier.fillMaxWidth(0.6f),
|
||||
selectedText = uiState.currentEnvironment,
|
||||
values = uiState.environments,
|
||||
onValueSelected = {
|
||||
sendCommand(ShowEnvironmentWarningDialog(it))
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun ColumnScope.DebugCell(
|
||||
title: String,
|
||||
modifier: Modifier = Modifier,
|
||||
content: @Composable () -> Unit
|
||||
) {
|
||||
Spacer(modifier = Modifier.height(LocalDimensions.current.smallSpacing))
|
||||
|
||||
Cell {
|
||||
Column(
|
||||
modifier = modifier.padding(LocalDimensions.current.spacing)
|
||||
) {
|
||||
Text(
|
||||
text = title,
|
||||
style = LocalType.current.large.bold()
|
||||
)
|
||||
|
||||
Spacer(modifier = Modifier.height(LocalDimensions.current.xsSpacing))
|
||||
|
||||
content()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Preview
|
||||
@Composable
|
||||
fun PreviewDebugMenu(){
|
||||
PreviewTheme {
|
||||
DebugMenu(
|
||||
uiState = DebugMenuViewModel.UIState(
|
||||
currentEnvironment = "Development",
|
||||
environments = listOf("Development", "Production"),
|
||||
snackMessage = null,
|
||||
showEnvironmentWarningDialog = false,
|
||||
showEnvironmentLoadingDialog = false
|
||||
),
|
||||
sendCommand = {},
|
||||
onClose = {}
|
||||
)
|
||||
}
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package org.thoughtcrime.securesms.debugmenu
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.collectAsState
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.lifecycle.viewmodel.compose.viewModel
|
||||
|
||||
@Composable
|
||||
fun DebugMenuScreen(
|
||||
modifier: Modifier = Modifier,
|
||||
debugMenuViewModel: DebugMenuViewModel = viewModel(),
|
||||
onClose: () -> Unit
|
||||
) {
|
||||
val uiState by debugMenuViewModel.uiState.collectAsState()
|
||||
|
||||
DebugMenu(
|
||||
modifier = modifier,
|
||||
uiState = uiState,
|
||||
sendCommand = debugMenuViewModel::onCommand,
|
||||
onClose = onClose
|
||||
)
|
||||
}
|
@ -0,0 +1,115 @@
|
||||
package org.thoughtcrime.securesms.debugmenu
|
||||
|
||||
import android.app.Application
|
||||
import android.widget.Toast
|
||||
import androidx.lifecycle.ViewModel
|
||||
import androidx.lifecycle.viewModelScope
|
||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||
import kotlinx.coroutines.Dispatchers.Main
|
||||
import kotlinx.coroutines.delay
|
||||
import kotlinx.coroutines.flow.MutableStateFlow
|
||||
import kotlinx.coroutines.flow.StateFlow
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.withContext
|
||||
import network.loki.messenger.R
|
||||
import org.session.libsession.messaging.open_groups.OpenGroupApi
|
||||
import org.session.libsession.snode.SnodeAPI
|
||||
import org.session.libsession.utilities.TextSecurePreferences
|
||||
import org.session.libsignal.utilities.Log
|
||||
import org.thoughtcrime.securesms.ApplicationContext
|
||||
import org.session.libsession.utilities.Environment
|
||||
import org.thoughtcrime.securesms.dependencies.DatabaseComponent
|
||||
import org.thoughtcrime.securesms.util.ConfigurationMessageUtilities
|
||||
import javax.inject.Inject
|
||||
|
||||
@HiltViewModel
|
||||
class DebugMenuViewModel @Inject constructor(
|
||||
private val application: Application,
|
||||
private val textSecurePreferences: TextSecurePreferences
|
||||
) : ViewModel() {
|
||||
private val TAG = "DebugMenu"
|
||||
|
||||
private val _uiState = MutableStateFlow(
|
||||
UIState(
|
||||
currentEnvironment = textSecurePreferences.getEnvironment().label,
|
||||
environments = Environment.entries.map { it.label },
|
||||
snackMessage = null,
|
||||
showEnvironmentWarningDialog = false,
|
||||
showEnvironmentLoadingDialog = false
|
||||
)
|
||||
)
|
||||
val uiState: StateFlow<UIState>
|
||||
get() = _uiState
|
||||
|
||||
private var temporaryEnv: Environment? = null
|
||||
|
||||
fun onCommand(command: Commands) {
|
||||
when (command) {
|
||||
is Commands.ChangeEnvironment -> changeEnvironment()
|
||||
|
||||
is Commands.HideEnvironmentWarningDialog -> _uiState.value =
|
||||
_uiState.value.copy(showEnvironmentWarningDialog = false)
|
||||
|
||||
is Commands.ShowEnvironmentWarningDialog ->
|
||||
showEnvironmentWarningDialog(command.environment)
|
||||
}
|
||||
}
|
||||
|
||||
private fun showEnvironmentWarningDialog(environment: String) {
|
||||
if(environment == _uiState.value.currentEnvironment) return
|
||||
val env = Environment.entries.firstOrNull { it.label == environment } ?: return
|
||||
|
||||
temporaryEnv = env
|
||||
|
||||
_uiState.value = _uiState.value.copy(showEnvironmentWarningDialog = true)
|
||||
}
|
||||
|
||||
private fun changeEnvironment() {
|
||||
val env = temporaryEnv ?: return
|
||||
|
||||
// show a loading state
|
||||
_uiState.value = _uiState.value.copy(
|
||||
showEnvironmentWarningDialog = false,
|
||||
showEnvironmentLoadingDialog = true
|
||||
)
|
||||
|
||||
// clear remote and local data, then restart the app
|
||||
viewModelScope.launch {
|
||||
try {
|
||||
ConfigurationMessageUtilities.forceSyncConfigurationNowIfNeeded(application).get()
|
||||
} catch (e: Exception) {
|
||||
// we can ignore fails here as we might be switching environments before the user gets a public key
|
||||
}
|
||||
ApplicationContext.getInstance(application).clearAllData().let { success ->
|
||||
if(success){
|
||||
// save the environment
|
||||
textSecurePreferences.setEnvironment(env)
|
||||
delay(500)
|
||||
ApplicationContext.getInstance(application).restartApplication()
|
||||
} else {
|
||||
_uiState.value = _uiState.value.copy(
|
||||
showEnvironmentWarningDialog = false,
|
||||
showEnvironmentLoadingDialog = false
|
||||
)
|
||||
Log.e(TAG, "Failed to force sync when deleting data")
|
||||
_uiState.value = _uiState.value.copy(snackMessage = "Sorry, something went wrong...")
|
||||
return@launch
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
data class UIState(
|
||||
val currentEnvironment: String,
|
||||
val environments: List<String>,
|
||||
val snackMessage: String?,
|
||||
val showEnvironmentWarningDialog: Boolean,
|
||||
val showEnvironmentLoadingDialog: Boolean
|
||||
)
|
||||
|
||||
sealed class Commands {
|
||||
object ChangeEnvironment : Commands()
|
||||
data class ShowEnvironmentWarningDialog(val environment: String) : Commands()
|
||||
object HideEnvironmentWarningDialog : Commands()
|
||||
}
|
||||
}
|
@ -0,0 +1,109 @@
|
||||
package org.thoughtcrime.securesms.ui.components
|
||||
|
||||
import androidx.compose.foundation.border
|
||||
import androidx.compose.material3.DropdownMenuItem
|
||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||
import androidx.compose.material3.ExposedDropdownMenuBox
|
||||
import androidx.compose.material3.ExposedDropdownMenuDefaults
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.MenuDefaults
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.material3.TextField
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.runtime.mutableStateOf
|
||||
import androidx.compose.runtime.remember
|
||||
import androidx.compose.runtime.setValue
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.tooling.preview.Preview
|
||||
import androidx.compose.ui.unit.dp
|
||||
import org.thoughtcrime.securesms.ui.theme.LocalColors
|
||||
import org.thoughtcrime.securesms.ui.theme.LocalType
|
||||
import org.thoughtcrime.securesms.ui.theme.PreviewTheme
|
||||
import org.thoughtcrime.securesms.ui.theme.bold
|
||||
|
||||
@OptIn(ExperimentalMaterial3Api::class)
|
||||
@Composable
|
||||
fun DropDown(
|
||||
modifier: Modifier = Modifier,
|
||||
selectedText: String,
|
||||
values: List<String>,
|
||||
onValueSelected: (String) -> Unit
|
||||
) {
|
||||
var expanded by remember { mutableStateOf(false) }
|
||||
|
||||
ExposedDropdownMenuBox(
|
||||
modifier = modifier,
|
||||
expanded = expanded,
|
||||
onExpandedChange = {
|
||||
expanded = !expanded
|
||||
}
|
||||
) {
|
||||
TextField(
|
||||
value = selectedText,
|
||||
onValueChange = {},
|
||||
readOnly = true,
|
||||
trailingIcon = { ExposedDropdownMenuDefaults.TrailingIcon(expanded = expanded) },
|
||||
modifier = Modifier
|
||||
.menuAnchor()
|
||||
.border(
|
||||
1.dp,
|
||||
color = LocalColors.current.borders,
|
||||
shape = MaterialTheme.shapes.medium
|
||||
),
|
||||
shape = MaterialTheme.shapes.medium,
|
||||
colors = ExposedDropdownMenuDefaults.textFieldColors(
|
||||
focusedContainerColor = LocalColors.current.backgroundSecondary,
|
||||
unfocusedContainerColor = LocalColors.current.backgroundSecondary,
|
||||
disabledIndicatorColor = Color.Transparent,
|
||||
errorIndicatorColor = Color.Transparent,
|
||||
focusedIndicatorColor = Color.Transparent,
|
||||
unfocusedIndicatorColor = Color.Transparent,
|
||||
disabledTrailingIconColor = LocalColors.current.primary,
|
||||
errorTrailingIconColor = LocalColors.current.primary,
|
||||
focusedTrailingIconColor = LocalColors.current.primary,
|
||||
unfocusedTrailingIconColor = LocalColors.current.primary,
|
||||
disabledTextColor = LocalColors.current.text,
|
||||
errorTextColor = LocalColors.current.text,
|
||||
focusedTextColor = LocalColors.current.text,
|
||||
unfocusedTextColor = LocalColors.current.text
|
||||
),
|
||||
textStyle = LocalType.current.base.bold()
|
||||
)
|
||||
|
||||
ExposedDropdownMenu(
|
||||
expanded = expanded,
|
||||
onDismissRequest = { expanded = false }
|
||||
) {
|
||||
values.forEach { item ->
|
||||
DropdownMenuItem(
|
||||
text = {
|
||||
Text(
|
||||
text = item,
|
||||
style = LocalType.current.base
|
||||
)
|
||||
},
|
||||
colors = MenuDefaults.itemColors(
|
||||
textColor = LocalColors.current.text
|
||||
),
|
||||
onClick = {
|
||||
expanded = false
|
||||
onValueSelected(item)
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Preview
|
||||
@Composable
|
||||
fun PreviewDropDown() {
|
||||
PreviewTheme {
|
||||
DropDown(
|
||||
selectedText = "Hello",
|
||||
values = listOf("First Item", "Second Item", "Third Item"),
|
||||
onValueSelected = {})
|
||||
}
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator">
|
||||
|
||||
<scale
|
||||
android:duration="250"
|
||||
android:fromXScale="0.85"
|
||||
android:fromYScale="0.85"
|
||||
android:toXScale="1.0"
|
||||
android:toYScale="1.0"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%" />
|
||||
|
||||
<alpha
|
||||
android:duration="250"
|
||||
android:fromAlpha="0.6"
|
||||
android:toAlpha="1" />
|
||||
|
||||
</set>
|
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator">
|
||||
|
||||
<translate
|
||||
android:duration="250"
|
||||
android:fromYDelta="0%"
|
||||
android:toYDelta="100%" />
|
||||
|
||||
</set>
|
@ -0,0 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="32dp"
|
||||
android:height="32dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50">
|
||||
<path
|
||||
android:pathData="M25,15.916C19.991,15.916 15.916,19.991 15.916,25C15.916,30.009 19.991,34.084 25,34.084C30.009,34.084 34.084,30.009 34.084,25C34.084,19.991 30.009,15.916 25,15.916ZM25,31.813C21.243,31.813 18.187,28.757 18.187,25C18.187,21.243 21.243,18.187 25,18.187C28.757,18.187 31.813,21.243 31.813,25C31.813,28.757 28.757,31.813 25,31.813Z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M43.106,20.673L40.185,20.038C39.931,19.261 39.617,18.502 39.245,17.772L40.862,15.257C41.151,14.807 41.088,14.217 40.71,13.84L36.16,9.29C35.783,8.913 35.193,8.849 34.743,9.138L32.228,10.755C31.498,10.383 30.739,10.069 29.962,9.815L29.327,6.894C29.213,6.372 28.751,6 28.217,6H21.783C21.249,6 20.787,6.372 20.673,6.894L20.038,9.815C19.261,10.069 18.502,10.383 17.772,10.755L15.257,9.138C14.807,8.849 14.217,8.913 13.84,9.29L9.29,13.84C8.913,14.217 8.849,14.807 9.138,15.257L10.755,17.772C10.383,18.502 10.069,19.261 9.815,20.038L6.894,20.673C6.372,20.787 6,21.249 6,21.783V28.217C6,28.751 6.372,29.213 6.894,29.327L9.815,29.962C10.069,30.739 10.383,31.498 10.755,32.228L9.138,34.743C8.849,35.193 8.913,35.783 9.29,36.16L13.84,40.71C14.217,41.088 14.807,41.151 15.257,40.862L17.772,39.245C18.502,39.617 19.261,39.931 20.038,40.185L20.673,43.106C20.787,43.628 21.249,44 21.783,44H28.217C28.751,44 29.213,43.628 29.327,43.106L29.962,40.185C30.739,39.931 31.498,39.617 32.228,39.245L34.743,40.862C35.193,41.151 35.783,41.088 36.16,40.71L40.71,36.16C41.088,35.783 41.151,35.193 40.862,34.743L39.245,32.228C39.617,31.498 39.931,30.739 40.185,29.962L43.106,29.327C43.628,29.213 44,28.751 44,28.217V21.783C44,21.249 43.628,20.787 43.106,20.673ZM41.729,27.302L39.051,27.884C38.64,27.974 38.312,28.283 38.199,28.689C37.904,29.744 37.481,30.765 36.94,31.723C36.734,32.089 36.746,32.541 36.974,32.895L38.457,35.201L35.202,38.457L32.895,36.974C32.541,36.746 32.089,36.734 31.723,36.94C30.765,37.481 29.744,37.904 28.689,38.199C28.283,38.312 27.974,38.64 27.884,39.051L27.302,41.729H22.698L22.116,39.051C22.026,38.64 21.717,38.312 21.311,38.199C20.256,37.904 19.235,37.481 18.277,36.94C17.911,36.734 17.459,36.747 17.105,36.974L14.799,38.457L11.543,35.201L13.026,32.895C13.254,32.541 13.267,32.089 13.06,31.723C12.519,30.765 12.096,29.744 11.802,28.689C11.689,28.283 11.361,27.974 10.949,27.884L8.271,27.302V22.698L10.949,22.116C11.36,22.026 11.689,21.717 11.802,21.311C12.096,20.256 12.519,19.235 13.059,18.277C13.267,17.911 13.254,17.459 13.026,17.105L11.543,14.799L14.798,11.543L17.105,13.026C17.459,13.254 17.911,13.267 18.277,13.059C19.235,12.519 20.256,12.096 21.311,11.802C21.717,11.689 22.026,11.36 22.116,10.949L22.698,8.271H27.302L27.884,10.949C27.974,11.36 28.283,11.689 28.689,11.802C29.744,12.096 30.765,12.519 31.723,13.059C32.089,13.267 32.541,13.253 32.895,13.026L35.201,11.543L38.457,14.799L36.974,17.105C36.746,17.459 36.733,17.911 36.94,18.277C37.481,19.235 37.904,20.256 38.199,21.311C38.312,21.717 38.639,22.026 39.051,22.116L41.729,22.698V27.302Z"
|
||||
android:fillColor="#000000"/>
|
||||
</vector>
|
@ -0,0 +1,5 @@
|
||||
package org.session.libsession.utilities
|
||||
|
||||
enum class Environment(val label: String) {
|
||||
MAIN_NET("Mainnet"), TEST_NET("Testnet")
|
||||
}
|
Loading…
Reference in New Issue