Rename all features modules

This commit is contained in:
ganfra 2023-01-20 18:35:03 +01:00
parent 6cc38c9c49
commit f800e22477
149 changed files with 311 additions and 309 deletions

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.preferences
package io.element.android.features.preferences
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.platform.app.InstrumentationRegistry

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.preferences
package io.element.android.features.preferences
import android.os.Parcelable
import androidx.compose.runtime.Composable
@ -25,7 +25,7 @@ import com.bumble.appyx.core.node.Node
import com.bumble.appyx.core.node.ParentNode
import com.bumble.appyx.navmodel.backstack.BackStack
import io.element.android.libraries.architecture.createNode
import io.element.android.x.features.preferences.root.PreferencesRootNode
import io.element.android.features.preferences.root.PreferencesRootNode
import kotlinx.parcelize.Parcelize
class PreferencesFlowNode(

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.preferences.root
package io.element.android.features.preferences.root
import androidx.compose.runtime.Composable
import androidx.compose.runtime.collectAsState

View file

@ -14,13 +14,13 @@
* limitations under the License.
*/
package io.element.android.x.features.preferences.root
package io.element.android.features.preferences.root
import androidx.compose.runtime.Composable
import io.element.android.libraries.architecture.Async
import io.element.android.libraries.architecture.Presenter
import io.element.android.x.features.logout.LogoutPreferencePresenter
import io.element.android.x.features.rageshake.preferences.RageshakePreferencesPresenter
import io.element.android.features.logout.LogoutPreferencePresenter
import io.element.android.features.rageshake.preferences.RageshakePreferencesPresenter
import javax.inject.Inject
class PreferencesRootPresenter @Inject constructor(

View file

@ -14,11 +14,11 @@
* limitations under the License.
*/
package io.element.android.x.features.preferences.root
package io.element.android.features.preferences.root
import io.element.android.libraries.architecture.Async
import io.element.android.x.features.logout.LogoutPreferenceState
import io.element.android.x.features.rageshake.preferences.RageshakePreferencesState
import io.element.android.features.logout.LogoutPreferenceState
import io.element.android.features.rageshake.preferences.RageshakePreferencesState
import io.element.android.libraries.matrix.ui.model.MatrixUser
data class PreferencesRootState(

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.preferences.root
package io.element.android.features.preferences.root
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
@ -22,11 +22,11 @@ import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
import io.element.android.libraries.architecture.Async
import io.element.android.libraries.designsystem.components.preferences.PreferenceView
import io.element.android.x.features.logout.LogoutPreferenceState
import io.element.android.x.features.logout.LogoutPreferenceView
import io.element.android.x.features.preferences.user.UserPreferences
import io.element.android.x.features.rageshake.preferences.RageshakePreferencesState
import io.element.android.x.features.rageshake.preferences.RageshakePreferencesView
import io.element.android.features.logout.LogoutPreferenceState
import io.element.android.features.logout.LogoutPreferenceView
import io.element.android.features.preferences.user.UserPreferences
import io.element.android.features.rageshake.preferences.RageshakePreferencesState
import io.element.android.features.rageshake.preferences.RageshakePreferencesView
import io.element.android.libraries.ui.strings.R as StringR
@Composable

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.preferences.user
package io.element.android.features.preferences.user
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.height

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.preferences
package io.element.android.features.preferences
import org.junit.Assert.assertEquals
import org.junit.Test