mirror of
https://github.com/rafaelvcaetano/melonDS-android.git
synced 2025-02-22 23:03:08 +00:00
Fix release builds
A Jetpack Compose dependency was missing that was preventing preview annotations from being accessible during release builds
This commit is contained in:
parent
46280cb5df
commit
a4f2210f99
@ -131,6 +131,7 @@ dependencies {
|
||||
implementation(foundation)
|
||||
implementation(material)
|
||||
implementation(ui)
|
||||
implementation(uiToolingPreview)
|
||||
|
||||
debugImplementation(uiTooling)
|
||||
}
|
||||
|
@ -77,6 +77,7 @@ object Dependencies {
|
||||
const val material = "androidx.compose.material:material:${Versions.Compose}"
|
||||
const val ui = "androidx.compose.ui:ui:${Versions.Compose}"
|
||||
const val uiTooling = "androidx.compose.ui:ui-tooling:${Versions.Compose}"
|
||||
const val uiToolingPreview = "androidx.compose.ui:ui-tooling-preview:${Versions.Compose}"
|
||||
}
|
||||
|
||||
object ThirdParty {
|
||||
|
Loading…
x
Reference in New Issue
Block a user