mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-22 01:40:07 +01:00
New conversation v2 - Add support for find by username/phone/contacts and group creation.
This commit is contained in:
committed by
Cody Henthorne
parent
33f9369883
commit
5d60ab35de
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user