Skip to content

Commit 06a72a5

Browse files
authored
Merge pull request #26 from etonotieno/fix-compose-previews
Fix compose previews
2 parents d5897f8 + 292976d commit 06a72a5

File tree

3 files changed

+214
-193
lines changed

3 files changed

+214
-193
lines changed

BeeTablesCompose/build.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ android {
5252
excludes += "/META-INF/{AL2.0,LGPL2.1}"
5353
}
5454
}
55+
buildFeatures {
56+
compose = true
57+
}
5558
}
5659

5760
dependencies {

app/build.gradle.kts

+4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ android {
4343
getDefaultProguardFile("proguard-android-optimize.txt"),
4444
"proguard-rules.pro",
4545
)
46+
signingConfig = signingConfigs.getByName("debug")
4647
}
4748
}
4849
compileOptions {
@@ -57,6 +58,9 @@ android {
5758
excludes += "/META-INF/{AL2.0,LGPL2.1}"
5859
}
5960
}
61+
buildFeatures {
62+
compose = true
63+
}
6064
}
6165

6266
dependencies {

0 commit comments

Comments
 (0)