Merge "Avoid running localeconfig change before SDK 17" into androidx-main
diff --git a/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/LocalesConfigChangesWithoutLayoutDirectionTestCase.kt b/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/LocalesConfigChangesWithoutLayoutDirectionTestCase.kt
index 20f8505..83239cd 100644
--- a/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/LocalesConfigChangesWithoutLayoutDirectionTestCase.kt
+++ b/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/LocalesConfigChangesWithoutLayoutDirectionTestCase.kt
@@ -28,7 +28,7 @@
 import org.junit.Before
 import org.junit.Test
 
-@SdkSuppress(maxSdkVersion = 32)
+@SdkSuppress(minSdkVersion = 17, maxSdkVersion = 32)
 class LocalesConfigChangesWithoutLayoutDirectionTestCase {
     private lateinit var scenario: ActivityScenario<
         LocalesConfigChangesActivityWithoutLayoutDirection>
diff --git a/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/LocalesCustomAttachBaseContextTestCase.kt b/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/LocalesCustomAttachBaseContextTestCase.kt
index 45593fbe..bece087 100644
--- a/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/LocalesCustomAttachBaseContextTestCase.kt
+++ b/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/LocalesCustomAttachBaseContextTestCase.kt
@@ -34,7 +34,7 @@
 import org.junit.Test
 
 @LargeTest
-@SdkSuppress(maxSdkVersion = 32)
+@SdkSuppress(minSdkVersion = 17, maxSdkVersion = 32)
 class LocalesCustomAttachBaseContextTestCase() {
 
     @get:Rule