mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 14:07:05 +05:30
all: update JB Compose and KSP deps
This commit is contained in:
parent
83e487e8fc
commit
94afba68a1
8 changed files with 15 additions and 15 deletions
|
@ -1,7 +1,7 @@
|
|||
import java.util.Properties
|
||||
|
||||
plugins {
|
||||
id("org.jetbrains.compose") version "1.0.0-alpha4-build321"
|
||||
id("org.jetbrains.compose") version "1.0.0-alpha4-build328"
|
||||
id("com.android.application")
|
||||
kotlin("android")
|
||||
kotlin("kapt")
|
||||
|
@ -20,11 +20,11 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
compileSdk = 30
|
||||
compileSdk = 31
|
||||
defaultConfig {
|
||||
applicationId = "dev.msfjarvis.claw.android"
|
||||
minSdk = 23
|
||||
targetSdk = 30
|
||||
targetSdk = 31
|
||||
versionCode = 1
|
||||
versionName = "1.0"
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ android {
|
|||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
android:name=".ClawApplication"
|
||||
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
|
||||
>
|
||||
<activity android:name=".MainActivity">
|
||||
<activity android:name=".MainActivity" android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
kotlin("jvm")
|
||||
id("com.google.devtools.ksp") version "1.5.21-1.0.0-beta07"
|
||||
id("com.google.devtools.ksp") version "1.5.30-1.0.0-beta08"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -12,7 +12,7 @@ buildscript {
|
|||
}
|
||||
dependencies {
|
||||
classpath("com.android.tools:r8:3.1.17-dev")
|
||||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
|
||||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30")
|
||||
classpath("com.android.tools.build:gradle:7.1.0-alpha10")
|
||||
classpath("com.diffplug.spotless:spotless-plugin-gradle:5.14.3")
|
||||
classpath("com.google.dagger:hilt-android-gradle-plugin:2.38.1")
|
||||
|
|
|
@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|||
|
||||
plugins {
|
||||
kotlin("multiplatform")
|
||||
id("org.jetbrains.compose") version "1.0.0-alpha4-build321"
|
||||
id("org.jetbrains.compose") version "1.0.0-alpha4-build328"
|
||||
id("com.android.library")
|
||||
}
|
||||
|
||||
|
@ -50,13 +50,13 @@ tasks.withType<KotlinCompile> {
|
|||
|
||||
android {
|
||||
buildFeatures { androidResources = true }
|
||||
compileSdk = 30
|
||||
compileSdk = 31
|
||||
sourceSets["main"].apply {
|
||||
manifest.srcFile("src/androidMain/AndroidManifest.xml")
|
||||
res.srcDirs("src/commonMain/resources")
|
||||
}
|
||||
defaultConfig {
|
||||
minSdk = 23
|
||||
targetSdk = 30
|
||||
targetSdk = 31
|
||||
}
|
||||
}
|
||||
|
|
|
@ -40,11 +40,11 @@ kotlin {
|
|||
}
|
||||
|
||||
android {
|
||||
compileSdk = 30
|
||||
compileSdk = 31
|
||||
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
|
||||
defaultConfig {
|
||||
minSdk = 23
|
||||
targetSdk = 30
|
||||
targetSdk = 31
|
||||
consumerProguardFiles("consumer-rules.pro")
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|||
|
||||
plugins {
|
||||
kotlin("multiplatform")
|
||||
id("org.jetbrains.compose") version "1.0.0-alpha4-build321"
|
||||
id("org.jetbrains.compose") version "1.0.0-alpha4-build328"
|
||||
}
|
||||
|
||||
group = "dev.msfjarvis.claw"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[versions]
|
||||
coroutines = "1.5.1"
|
||||
hilt = "2.38.1"
|
||||
moshix = "0.12.2"
|
||||
moshix = "0.13.0"
|
||||
retrofit = "2.9.0"
|
||||
sqldelight = "1.5.1"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue