Colton Idle
05/27/2024, 3:54 AMalias(libs.plugins.composeMultiplatform)
alias(libs.plugins.androidApplication)
alias(libs.plugins.kotlinMultiplatform)
alias(libs.plugins.kotlinMultiplatformPlugin.compose)
but now when I run my app it tells me my manifest is in the wrong place. it wants it in /androidMain
Is there a way to do that easy wai to tell it not to look in androidMain., but just main?eygraber
05/27/2024, 3:57 AMandroid {
sourceSets.named("main") {
manifest.srcFile("src/main/AndroidManifest.xml")
}
}
Colton Idle
05/27/2024, 3:04 PMColton Idle
05/27/2024, 3:06 PMeygraber
05/27/2024, 3:07 PMColton Idle
05/27/2024, 3:08 PMColton Idle
05/27/2024, 3:09 PMeygraber
05/27/2024, 3:09 PMeygraber
05/27/2024, 3:09 PMColton Idle
05/27/2024, 3:09 PMColton Idle
05/27/2024, 3:10 PMColton Idle
05/27/2024, 3:10 PMalias(libs.plugins.composeMultiplatform)
alias(libs.plugins.androidApplication)
alias(libs.plugins.kotlinAndroid)
alias(libs.plugins.kotlinMultiplatformPlugin.compose)
Colton Idle
05/27/2024, 3:10 PMThe request for this plugin could not be satisfied because the plugin is already on the classpath with an unknown version, so compatibility cannot be checked.
eygraber
05/27/2024, 3:46 PMalias
call with kotlin("android")
and see if that works.Colton Idle
05/27/2024, 3:47 PMColton Idle
05/27/2024, 3:47 PMColton Idle
05/27/2024, 3:47 PMColton Idle
05/27/2024, 3:48 PMalias(libs.plugins.composeMultiplatform)
alias(libs.plugins.androidApplication)
alias(libs.plugins.kotlinAndroid)
alias(libs.plugins.kotlinCompilerPlugin.compose)
Colton Idle
05/27/2024, 4:05 PMbuildFeatures {
compose = true
in my app (thanks for the reminder). I wonder why everything still seemingly worked loleygraber
05/27/2024, 4:14 PMColton Idle
05/27/2024, 4:16 PM