feat(web): init

This commit is contained in:
Harsh Shandilya 2023-12-03 22:31:43 +05:30
parent 6084e5bb30
commit 5bcfe0a85c
No known key found for this signature in database
13 changed files with 685 additions and 7 deletions

29
web/build.gradle.kts Normal file
View file

@ -0,0 +1,29 @@
/*
* Copyright © 2023 Harsh Shandilya.
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/
@file:Suppress("UnstableApiUsage")
plugins {
id("dev.msfjarvis.claw.android-library")
id("dev.msfjarvis.claw.kotlin-android")
}
android {
namespace = "com.google.accompanist.web"
buildFeatures.compose = true
composeOptions.kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
kotlin.explicitApi()
}
dependencies {
implementation(projects.core)
implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.compose.material3)
implementation(libs.androidx.compose.ui.util)
implementation(libs.androidx.lifecycle.runtime)
implementation(libs.androidx.activity.compose)
implementation(libs.kotlinx.collections.immutable)
}