Change package and fix KDoc.

This commit is contained in:
Benoit Marty
2023-01-20 12:43:49 +01:00
parent 73ce44f0a1
commit c532f9694b
6 changed files with 12 additions and 12 deletions

View File

@@ -57,8 +57,8 @@ import io.element.android.x.core.compose.textFieldState
import io.element.android.x.designsystem.components.VectorIcon
import io.element.android.x.features.login.R
import io.element.android.x.features.login.error.changeServerError
import io.element.android.x.testtags.TestTags
import io.element.android.x.testtags.testTag
import io.element.android.x.libraries.testtags.TestTags
import io.element.android.x.libraries.testtags.testTag
@Composable
fun ChangeServerView(

View File

@@ -60,9 +60,9 @@ import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import io.element.android.x.core.compose.textFieldState
import io.element.android.x.features.login.error.loginError
import io.element.android.x.libraries.testtags.TestTags
import io.element.android.x.libraries.testtags.testTag
import io.element.android.x.matrix.core.SessionId
import io.element.android.x.testtags.TestTags
import io.element.android.x.testtags.testTag
import io.element.android.x.ui.strings.R as StringR
@OptIn(ExperimentalMaterial3Api::class)

View File

@@ -50,8 +50,8 @@ import com.google.accompanist.pager.HorizontalPager
import com.google.accompanist.pager.HorizontalPagerIndicator
import com.google.accompanist.pager.rememberPagerState
import io.element.android.x.designsystem.components.VectorButton
import io.element.android.x.testtags.TestTags
import io.element.android.x.testtags.testTag
import io.element.android.x.libraries.testtags.TestTags
import io.element.android.x.libraries.testtags.testTag
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import io.element.android.x.ui.strings.R as StringR

View File

@@ -19,5 +19,5 @@ plugins {
}
android {
namespace = "io.element.android.x.testtags"
namespace = "io.element.android.x.libraries.testtags"
}

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.testtags
package io.element.android.x.libraries.testtags
import androidx.compose.ui.ExperimentalComposeUiApi
import androidx.compose.ui.Modifier

View File

@@ -14,19 +14,19 @@
* limitations under the License.
*/
package io.element.android.x.testtags
package io.element.android.x.libraries.testtags
@JvmInline
value class TestTag internal constructor(val value: String)
object TestTags {
/**
* OnBoarding screen
* OnBoarding screen.
*/
val onBoardingSignIn = TestTag("onboarding-sign_in")
/**
* Login screen
* Login screen.
*/
val loginChangeServer = TestTag("login-change_server")
val loginEmailUsername = TestTag("login-email_username")
@@ -34,7 +34,7 @@ object TestTags {
val loginContinue = TestTag("login-continue")
/**
* Change server screen
* Change server screen.
*/
val changeServerServer = TestTag("change_server-server")
val changeServerContinue = TestTag("change_server-continue")