Reorganisation into subpackages
This commit is contained in:
parent
f8d8d8a701
commit
6fc401edc2
10 changed files with 20 additions and 15 deletions
|
@ -10,7 +10,7 @@
|
|||
android:supportsRtl = "true" >
|
||||
|
||||
<activity
|
||||
android:name = ".MainActivity"
|
||||
android:name = "com.kernelmaft.zanbur.ui.MainActivity"
|
||||
android:exported = "true" >
|
||||
|
||||
<intent-filter>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package com.kernelmaft.zanbur
|
||||
package com.kernelmaft.zanbur.common
|
||||
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.kernelmaft.zanbur
|
||||
package com.kernelmaft.zanbur.common
|
||||
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.kernelmaft.zanbur
|
||||
package com.kernelmaft.zanbur.common
|
||||
|
||||
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
package com.kernelmaft.zanbur
|
||||
package com.kernelmaft.zanbur.network
|
||||
|
||||
import com.kernelmaft.zanbur.Config.MQTT_SERVER_HOST
|
||||
import com.kernelmaft.zanbur.Config.MQTT_SERVER_PORT
|
||||
import com.kernelmaft.zanbur.Config.MQTT_TOPIC
|
||||
import com.kernelmaft.zanbur.common.Config.MQTT_SERVER_HOST
|
||||
import com.kernelmaft.zanbur.common.Config.MQTT_SERVER_PORT
|
||||
import com.kernelmaft.zanbur.common.Config.MQTT_TOPIC
|
||||
import io.github.davidepianca98.*
|
||||
import io.github.davidepianca98.mqtt.*
|
||||
import io.github.davidepianca98.mqtt.MQTTVersion.*
|
|
@ -1,6 +1,7 @@
|
|||
package com.kernelmaft.zanbur
|
||||
package com.kernelmaft.zanbur.network
|
||||
|
||||
import com.kernelmaft.zanbur.Config.MQTT_TOPIC
|
||||
import com.kernelmaft.zanbur.common.*
|
||||
import com.kernelmaft.zanbur.common.Config.MQTT_TOPIC
|
||||
import kotlinx.serialization.*
|
||||
import kotlinx.serialization.json.*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.kernelmaft.zanbur
|
||||
package com.kernelmaft.zanbur.ui
|
||||
|
||||
import androidx.compose.foundation.layout.*
|
||||
import androidx.compose.foundation.layout.Arrangement.Center
|
||||
|
@ -9,6 +9,7 @@ import androidx.compose.material3.ButtonDefaults.shape
|
|||
import androidx.compose.runtime.*
|
||||
import androidx.compose.ui.*
|
||||
import androidx.compose.ui.Alignment.Companion.CenterHorizontally
|
||||
import com.kernelmaft.zanbur.common.*
|
||||
|
||||
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
package com.kernelmaft.zanbur
|
||||
package com.kernelmaft.zanbur.ui
|
||||
|
||||
import androidx.compose.runtime.*
|
||||
import com.kernelmaft.zanbur.common.*
|
||||
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.kernelmaft.zanbur
|
||||
package com.kernelmaft.zanbur.ui
|
||||
|
||||
import android.os.*
|
||||
import androidx.activity.compose.*
|
||||
|
@ -6,7 +6,9 @@ import androidx.compose.foundation.layout.*
|
|||
import androidx.compose.ui.*
|
||||
import androidx.compose.ui.unit.*
|
||||
import androidx.lifecycle.*
|
||||
import com.kernelmaft.zanbur.ChangeSource.*
|
||||
import com.kernelmaft.zanbur.common.*
|
||||
import com.kernelmaft.zanbur.common.ChangeSource.*
|
||||
import com.kernelmaft.zanbur.network.*
|
||||
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.kernelmaft.zanbur
|
||||
package com.kernelmaft.zanbur.ui
|
||||
|
||||
import android.os.*
|
||||
import androidx.activity.*
|
Loading…
Add table
Reference in a new issue