Skip to content

Commit

Permalink
Move MainActivity to labs.lucka.refrain
Browse files Browse the repository at this point in the history
Signed-off-by: lucka-me <[email protected]>
  • Loading branch information
lucka-me committed Sep 6, 2022
1 parent ee3b40a commit 157bb20
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
android:theme="@style/Theme.Refrain"
tools:targetApi="32">
<activity
android:name=".ui.MainActivity"
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package labs.lucka.refrain.ui
package labs.lucka.refrain

import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.lifecycle.ViewModelProvider
import androidx.lifecycle.get
import labs.lucka.refrain.ui.RefrainApp
import labs.lucka.refrain.ui.RefrainModel

class MainActivity : ComponentActivity() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import labs.lucka.refrain.R
import labs.lucka.refrain.common.preferences.Keys
import labs.lucka.refrain.common.preferencesDataStore
import labs.lucka.refrain.service.appender.FileAppender
import labs.lucka.refrain.ui.MainActivity
import labs.lucka.refrain.MainActivity
import java.time.LocalDateTime
import java.time.ZoneId

Expand Down

0 comments on commit 157bb20

Please sign in to comment.