Update dependencies
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 3m15s
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 3m15s
This commit is contained in:
@@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"spec": {
|
|
||||||
"template_id": "kmt",
|
|
||||||
"targets": {
|
|
||||||
"android": {
|
|
||||||
"ui": [
|
|
||||||
"compose"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"desktop": {
|
|
||||||
"ui": [
|
|
||||||
"compose"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"timestamp": "2024-04-29T06:04:57.807358293Z"
|
|
||||||
}
|
|
||||||
@@ -3,7 +3,6 @@ plugins {
|
|||||||
alias(libs.plugins.android.application)
|
alias(libs.plugins.android.application)
|
||||||
alias(libs.plugins.compose.compiler)
|
alias(libs.plugins.compose.compiler)
|
||||||
alias(libs.plugins.compose)
|
alias(libs.plugins.compose)
|
||||||
alias(libs.plugins.kotlin.android)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
@@ -18,23 +17,6 @@ android {
|
|||||||
versionName = libs.versions.app.version.name.get()
|
versionName = libs.versions.app.version.name.get()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
|
||||||
implementation(compose.components.resources)
|
|
||||||
implementation(compose.runtime)
|
|
||||||
// implementation(compose.foundation)
|
|
||||||
implementation(compose.material3)
|
|
||||||
implementation(compose.ui)
|
|
||||||
implementation(compose.components.resources)
|
|
||||||
implementation(libs.androidx.activity.compose)
|
|
||||||
// implementation(libs.compose.ui.text.googlefonts)
|
|
||||||
implementation(projects.commonUI)
|
|
||||||
// implementation(compose.components.uiToolingPreview)
|
|
||||||
implementation(libs.androidx.tooling.preview)
|
|
||||||
|
|
||||||
testImplementation(libs.kotlin.test)
|
|
||||||
testImplementation(libs.atrium)
|
|
||||||
}
|
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility = JavaVersion.toVersion(libs.versions.jdk.get())
|
sourceCompatibility = JavaVersion.toVersion(libs.versions.jdk.get())
|
||||||
targetCompatibility = JavaVersion.toVersion(libs.versions.jdk.get())
|
targetCompatibility = JavaVersion.toVersion(libs.versions.jdk.get())
|
||||||
@@ -64,6 +46,20 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
implementation(compose.components.resources)
|
||||||
|
implementation(compose.runtime)
|
||||||
|
implementation(compose.material3)
|
||||||
|
implementation(compose.ui)
|
||||||
|
implementation(compose.components.resources)
|
||||||
|
implementation(libs.androidx.activity.compose)
|
||||||
|
implementation(projects.commonUI)
|
||||||
|
implementation(compose.components.uiToolingPreview)
|
||||||
|
// implementation(libs.androidx.tooling.preview)
|
||||||
|
|
||||||
implementation(libs.androidx.core.ktx)
|
implementation(libs.androidx.core.ktx)
|
||||||
|
|
||||||
debugImplementation(libs.androidx.tooling)
|
debugImplementation(libs.androidx.tooling)
|
||||||
|
|
||||||
|
testImplementation(libs.kotlin.test)
|
||||||
|
testImplementation(libs.atrium)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
package ch.dissem.yaep.android
|
|
||||||
|
|
||||||
import ch.tutteli.atrium.api.fluent.en_GB.toEqual
|
|
||||||
import ch.tutteli.atrium.api.verbs.expect
|
|
||||||
import kotlin.test.Test
|
|
||||||
|
|
||||||
class DummyTest {
|
|
||||||
@Test
|
|
||||||
fun `ensure some test is run`() {
|
|
||||||
expect(true).toEqual(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -8,4 +8,13 @@ android.nonTransitiveRClass=true
|
|||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
|
|
||||||
#MPP
|
#MPP
|
||||||
kotlin.mpp.androidSourceSetLayoutVersion=2
|
kotlin.mpp.androidSourceSetLayoutVersion=2
|
||||||
|
#android.defaults.buildfeatures.resvalues=true
|
||||||
|
#android.enableAppCompileTimeRClass=false
|
||||||
|
#android.usesSdkInManifest.disallowed=false
|
||||||
|
#android.uniquePackageNames=false
|
||||||
|
#android.dependency.useConstraints=true
|
||||||
|
#android.r8.strictFullModeForKeepRules=false
|
||||||
|
#android.r8.optimizedResourceShrinking=false
|
||||||
|
#android.builtInKotlin=false
|
||||||
|
#android.newDsl=false
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
[versions]
|
[versions]
|
||||||
app-version-code = "1"
|
app-version-code = "1"
|
||||||
app-version-name = "1.0.0"
|
app-version-name = "1.0.0"
|
||||||
agp = "8.13.2"
|
agp = "9.0.0"
|
||||||
jdk = "21"
|
jdk = "21"
|
||||||
android-compileSdk = "36"
|
android-compileSdk = "36"
|
||||||
android-minSdk = "26"
|
android-minSdk = "26"
|
||||||
android-targetSdk = "36"
|
android-targetSdk = "36"
|
||||||
androidx-activityCompose = "1.12.2"
|
androidx-activityCompose = "1.12.2"
|
||||||
androidx-compose = "1.10.0"
|
androidx-compose = "1.10.1"
|
||||||
compose-plugin = "1.9.3"
|
compose-plugin = "1.10.0"
|
||||||
kotlin = "2.3.0"
|
kotlin = "2.3.0"
|
||||||
coreKtx = "1.17.0"
|
coreKtx = "1.17.0"
|
||||||
atrium = "1.2.0"
|
atrium = "1.2.0"
|
||||||
|
|||||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
validateDistributionUrl=true
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
|||||||
Reference in New Issue
Block a user