Skip to content

Commit

Permalink
fix: not found ApplicationTheme function
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoshin committed Mar 27, 2022
1 parent 8ccc63e commit c6e25d1
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion theme/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdk versions.minSdk
targetSdk versions.targetSdk
versionCode 1
versionName "0.1.2"
versionName "0.1.3"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand All @@ -29,6 +29,19 @@ android {
}
kotlinOptions {
jvmTarget = '1.8'
useIR = true
}
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion versions.compose
kotlinCompilerVersion versions.kotlin
}
packagingOptions {
resources {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
}
}
}

Expand Down

0 comments on commit c6e25d1

Please sign in to comment.