use legacy minWidth/minHeight sizing trying to solve samsung resizing issues

This commit is contained in:
Fabian Freund
2026-05-26 13:15:06 +02:00
parent 3676ed6b08
commit 21184a1ccb
3 changed files with 17 additions and 4 deletions
+10
View File
@@ -15,6 +15,16 @@ allprojects {
//Required by background_fetch build
maven { url "${project(':background_fetch').projectDir}/libs" }
}
configurations.configureEach {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'androidx.glance' &&
details.requested.name == 'glance-appwidget') {
details.useVersion '1.1.1'
details.because 'home_widget uses 1.+ and newer alpha releases require AGP 9.1 and compileSdk 37'
}
}
}
}
rootProject.buildDir = "../build"