all: update JB Compose and KSP deps

This commit is contained in:
Harsh Shandilya 2021-08-29 19:25:39 +05:30
parent 83e487e8fc
commit 94afba68a1
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
8 changed files with 15 additions and 15 deletions

View file

@ -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
}
}

View file

@ -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" />

View file

@ -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 {

View file

@ -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")

View file

@ -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
}
}

View file

@ -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")
}
}

View file

@ -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"

View file

@ -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"