App ability to regV5 in the main app, behind compile flag.

This commit is contained in:
Greyson Parrelli
2026-04-03 14:20:09 -04:00
parent 0e11a1fe3e
commit 0e8dedf4d0
18 changed files with 1133 additions and 72 deletions

View File

@@ -0,0 +1,11 @@
package org.thoughtcrime.securesms.util
import org.junit.Assert.assertFalse
import org.junit.Test
class EnvironmentTest {
@Test
fun `USE_NEW_REGISTRATION must be false for release`() {
assertFalse("USE_NEW_REGISTRATION must not be committed as true!", Environment.USE_NEW_REGISTRATION)
}
}