From 7d0317036e963284b05ad51c1ea0cda335c83492 Mon Sep 17 00:00:00 2001 From: Heizi Date: Wed, 14 Sep 2022 18:15:54 +0800 Subject: [PATCH] release android. --- .idea/misc.xml | 3 +++ .idea/modules.xml | 8 -------- README.md | 2 +- gradle.properties | 4 ++-- lib/build.gradle.kts | 6 ++++-- 5 files changed, 10 insertions(+), 13 deletions(-) delete mode 100644 .idea/modules.xml diff --git a/.idea/misc.xml b/.idea/misc.xml index 2f1bd60..d51935a 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,9 @@ + + + diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index b8cc156..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/README.md b/README.md index 06012c9..572a534 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [Interactive demo](https://Kyant0.github.io/Monet) -Compose version: 1.3.0-beta02 +Compose version: Compose-JB-1.2.0-alpha01-dev774 ## Usages diff --git a/gradle.properties b/gradle.properties index 4ad5061..54543a7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,5 +6,5 @@ android.useAndroidX=true kotlin.version=1.7.10 agp.version=7.2.2 compose.version=1.2.0-alpha01-dev774 -monet.version=0.1.0-alpha03-multiplatform -monet.versionCode=3 +monet.version=0.1.0-alpha04-multiplatform +monet.versionCode=4 diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 8c59ee2..427571b 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -9,14 +9,16 @@ group = "com.kyant.monet" version = extra["monet.version"] as String kotlin { - android() + android { + publishLibraryVariants("release") + } jvm("desktop") { compilations.all { kotlinOptions.jvmTarget = "11" } } sourceSets { - val commonMain by getting { + commonMain { dependencies { api(compose.runtime) api(compose.foundation)