Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanCheen committed Jan 3, 2023
1 parent 990f3d5 commit d360f48
Show file tree
Hide file tree
Showing 37 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ dependencies {

implementation project(path: ':pandora')
implementation project(path: ':fantasy')
implementation project(path: ':archi-core')
implementation project(path: ':func')
implementation project(path: ':arch-core')
implementation project(path: ':arch-func')
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
// implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.13.2'
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/me/yifeiyuan/onepiece/dev/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.view.View
import me.yifeiyuan.onepiece.dev.test.TestLiveComponents
import me.yifeiyuan.onepiece.func.IntFunc
import me.yifeiyuan.onepiece.func.ValueFunc
import me.yifeiyuan.onepiece.arch.func.IntFunc
import me.yifeiyuan.onepiece.arch.func.ValueFunc
import me.yifeiyuan.onepiece.pandora.ktx.*

class MainActivity : AppCompatActivity() {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.yifeiyuan.onepiece.func">
package="me.yifeiyuan.onepiece.arch.func">

</manifest>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package me.yifeiyuan.onepiece.func
package me.yifeiyuan.onepiece.arch.func

/**
* Created by 程序亦非猿 on 2022/9/28.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package me.yifeiyuan.onepiece.func
package me.yifeiyuan.onepiece.arch.func

/**
* Created by 程序亦非猿 on 2022/9/28.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ package me.yifeiyuan.onepiece.arch.mvi
/**
* Created by 程序亦非猿 on 2022/12/2.
*/
sealed class State{
sealed class State {

object Idle :State()
object Idle : State()

object Loading:State()
object Loading : State()


}
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ include ':arch-clean'
include ':arch-mvvm'
include ':arch-mvi'
include ':foundation'
include ':func'
include ':arch-func'
include ':fantasy'
include ':pandora'
include ':archi-core'
include ':arch-core'
include ':app'
rootProject.name = "OnePiece"

0 comments on commit d360f48

Please sign in to comment.