New conversation v2 - Add support for find by username/phone/contacts and group creation.

This commit is contained in:
jeffrey-signal
2025-10-15 09:32:47 -04:00
committed by Cody Henthorne
parent 33f9369883
commit 5d60ab35de
6 changed files with 349 additions and 30 deletions

View File

@@ -0,0 +1,14 @@
/*
* Copyright 2025 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.thoughtcrime.securesms.recipients
import org.thoughtcrime.securesms.util.SignalE164Util
@JvmInline
value class PhoneNumber(val value: String) {
val displayText: String
get() = SignalE164Util.prettyPrint(value)
}