Rename app package to solutions.tretter.esunandroid
- Update Gradle namespace + applicationId - Move Kotlin sources + tests to new package path - Update package declarations across app - Build debug APK v17
This commit is contained in:
@@ -5,15 +5,15 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "com.esun"
|
namespace = "solutions.tretter.esunandroid"
|
||||||
compileSdk = 35
|
compileSdk = 35
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = "com.esun"
|
applicationId = "solutions.tretter.esunandroid"
|
||||||
minSdk = 26
|
minSdk = 26
|
||||||
targetSdk = 35
|
targetSdk = 35
|
||||||
versionCode = 16
|
versionCode = 17
|
||||||
versionName = "16"
|
versionName = "17"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import androidx.datastore.preferences.core.edit
|
import androidx.datastore.preferences.core.edit
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
data class AppState(
|
data class AppState(
|
||||||
val temperatures: List<Int> = listOf(3000, 4500, 6000),
|
val temperatures: List<Int> = listOf(3000, 4500, 6000),
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
import androidx.compose.foundation.border
|
import androidx.compose.foundation.border
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import androidx.activity.ComponentActivity
|
import androidx.activity.ComponentActivity
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import androidx.lifecycle.ViewModel
|
import androidx.lifecycle.ViewModel
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import androidx.compose.foundation.ExperimentalFoundationApi
|
import androidx.compose.foundation.ExperimentalFoundationApi
|
||||||
import androidx.compose.foundation.combinedClickable
|
import androidx.compose.foundation.combinedClickable
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import kotlin.math.ln
|
import kotlin.math.ln
|
||||||
import kotlin.math.pow
|
import kotlin.math.pow
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import androidx.compose.foundation.gestures.detectTapGestures
|
import androidx.compose.foundation.gestures.detectTapGestures
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.esun
|
package solutions.tretter.esunandroid
|
||||||
|
|
||||||
import org.junit.Assert.assertTrue
|
import org.junit.Assert.assertTrue
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
Reference in New Issue
Block a user