Skip to content

Commit

Permalink
chore: change folder names
Browse files Browse the repository at this point in the history
We defined the app namespace, which implies to change the directories name. So does this commit
  • Loading branch information
Wylwi committed Oct 2, 2024
1 parent 80f91d8 commit cef1d34
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 126 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.android.sample
package ch.hikemate.app

import androidx.compose.ui.test.junit4.createAndroidComposeRule
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.android.sample.screen.MainScreen
import ch.hikemate.app.screen.MainScreen
import com.kaspersky.kaspresso.testcases.api.testcase.TestCase
import io.github.kakaocup.compose.node.element.ComposeScreen
import org.junit.Assert.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.android.sample.screen
package ch.hikemate.app.screen

import androidx.compose.ui.test.SemanticsNodeInteractionsProvider
import com.android.sample.resources.C
import ch.hikemate.app.resources.C
import io.github.kakaocup.compose.node.element.ComposeScreen
import io.github.kakaocup.compose.node.element.KNode

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.sample
package ch.hikemate.app

import android.os.Bundle
import androidx.activity.ComponentActivity
Expand All @@ -12,8 +12,8 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.semantics.semantics
import androidx.compose.ui.semantics.testTag
import androidx.compose.ui.tooling.preview.Preview
import com.android.sample.resources.C
import com.android.sample.ui.theme.SampleAppTheme
import ch.hikemate.app.resources.C
import ch.hikemate.app.ui.theme.SampleAppTheme

class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.sample
package ch.hikemate.app

import android.os.Bundle
import androidx.activity.ComponentActivity
Expand All @@ -12,8 +12,8 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.semantics.semantics
import androidx.compose.ui.semantics.testTag
import androidx.compose.ui.tooling.preview.Preview
import com.android.sample.resources.C
import com.android.sample.ui.theme.SampleAppTheme
import ch.hikemate.app.resources.C
import ch.hikemate.app.ui.theme.SampleAppTheme

class SecondActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.sample
package ch.hikemate.app

import kotlin.math.sqrt

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.sample.resources
package ch.hikemate.app.resources

// Like R, but C
object C {
Expand Down
11 changes: 0 additions & 11 deletions app/src/main/java/com/android/sample/ui/theme/Color.kt

This file was deleted.

62 changes: 0 additions & 62 deletions app/src/main/java/com/android/sample/ui/theme/Theme.kt

This file was deleted.

35 changes: 0 additions & 35 deletions app/src/main/java/com/android/sample/ui/theme/Type.kt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.android.sample
package ch.hikemate.app

import androidx.compose.ui.test.junit4.createAndroidComposeRule
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.android.sample.screen.SecondScreen
import ch.hikemate.app.screen.SecondScreen
import com.kaspersky.kaspresso.testcases.api.testcase.TestCase
import io.github.kakaocup.compose.node.element.ComposeScreen
import org.junit.Rule
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.sample
package ch.hikemate.app

import org.junit.Assert.*
import org.junit.Test
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.android.sample
package ch.hikemate.app

import org.junit.Assert.assertEquals
import org.junit.Test
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.android.sample.screen
package ch.hikemate.app.screen

import androidx.compose.ui.test.SemanticsNodeInteractionsProvider
import com.android.sample.resources.C
import ch.hikemate.app.resources.C
import io.github.kakaocup.compose.node.element.ComposeScreen
import io.github.kakaocup.compose.node.element.KNode

Expand Down

0 comments on commit cef1d34

Please sign in to comment.