diff options
| author | JosJuice <josjuice@gmail.com> | 2026-06-30 19:00:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-30 19:00:06 +0200 |
| commit | 39ef77c71626aee51681f3b662c648e82ca03013 (patch) | |
| tree | be8c0c246ffb9fd3f3fcd75a413cd4f3baf39dd9 /Source/Android | |
| parent | 32cd349207e84002c34aab0c5e5e5c06d0d4040f (diff) | |
| parent | b1d81af9cb1dcf722691be952e4a31caff49c13f (diff) | |
Merge pull request #14710 from JosJuice/android-netplay-fix
Android: Fix release build
Diffstat (limited to 'Source/Android')
| -rw-r--r-- | Source/Android/app/build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Android/app/build.gradle.kts b/Source/Android/app/build.gradle.kts index 11433e8160..11473af09f 100644 --- a/Source/Android/app/build.gradle.kts +++ b/Source/Android/app/build.gradle.kts @@ -169,8 +169,8 @@ dependencies { implementation(libs.androidx.compose.material3.adaptive) implementation(libs.androidx.compose.runtime.livedata) implementation(libs.androidx.compose.ui) - debugImplementation(libs.androidx.compose.ui.tooling) - debugImplementation(libs.androidx.compose.ui.tooling.preview) + implementation(libs.androidx.compose.ui.tooling) + implementation(libs.androidx.compose.ui.tooling.preview) } fun getGitVersion(): String { |
