Skip to content

Commit

Permalink
Bump minSdk to 21 for integration_tests
Browse files Browse the repository at this point in the history
Signed-off-by: utzcoz <utzcoz@outlook.com>
  • Loading branch information
utzcoz committed May 4, 2024
1 parent b6b94c2 commit da1352f
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion integration_tests/agp/build.gradle
Expand Up @@ -8,7 +8,7 @@ android {
namespace 'org.robolectric.integrationtests.agp'

defaultConfig {
minSdk 19
minSdk 21
targetSdk 34
}

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/agp/testsupport/build.gradle
Expand Up @@ -5,7 +5,7 @@ android {
namespace 'org.robolectric.integrationtests.agp.testsupport'

defaultConfig {
minSdk 19
minSdk 21
targetSdk 34
}

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/androidx/build.gradle
Expand Up @@ -8,7 +8,7 @@ android {
namespace 'org.robolectric.integrationtests.androidx'

defaultConfig {
minSdk 19
minSdk 21
targetSdk 34
}

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/ctesque/AndroidManifest.xml
Expand Up @@ -5,7 +5,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.robolectric.integrationtests.ctesque">
<uses-sdk
android:minSdkVersion="19"
android:minSdkVersion="21"
android:targetSdkVersion="34" />

<application />
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/ctesque/build.gradle
Expand Up @@ -10,7 +10,7 @@ android {
namespace 'org.robolectric.integrationtests.ctesque'

defaultConfig {
minSdk 19
minSdk 21
targetSdk 34
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
6 changes: 3 additions & 3 deletions integration_tests/dependency-on-stubs/build.gradle
Expand Up @@ -6,12 +6,12 @@ apply plugin: AndroidProjectConfigPlugin
// test with a project that depends on the stubs jar, not org.robolectric:android-all

android {
compileSdk 33
compileSdk 34
namespace 'org.robolectric'

defaultConfig {
minSdk 19
targetSdk 33
minSdk 21
targetSdk 34
}

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/memoryleaks/build.gradle
Expand Up @@ -8,7 +8,7 @@ android {
namespace 'org.robolectric.integrationtests.memoryleaks'

defaultConfig {
minSdk 19
minSdk 21
targetSdk 34
}

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/multidex/src/test/AndroidManifest.xml
Expand Up @@ -4,7 +4,7 @@
package="org.robolectric.integrationtests.multidex">

<uses-sdk
android:minSdkVersion="19"
android:minSdkVersion="21"
android:targetSdkVersion="34"/>

<application />
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/room/build.gradle
Expand Up @@ -8,7 +8,7 @@ android {
namespace 'org.robolectric.integrationtests.room'

defaultConfig {
minSdk 19
minSdk 21
targetSdk 34
}

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/sdkcompat/build.gradle
Expand Up @@ -18,7 +18,7 @@ android {
namespace 'org.robolectric.integrationtests.sdkcompat'

defaultConfig {
minSdk 19
minSdk 21
// We must keep targetSdk to 29 for compatibility testing purpose
targetSdk 29
}
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/sparsearray/build.gradle
Expand Up @@ -8,7 +8,7 @@ android {
namespace 'org.robolectric.sparsearray'

defaultConfig {
minSdk 19
minSdk 21
targetSdk 34
}

Expand Down

0 comments on commit da1352f

Please sign in to comment.