Skip to content

Commit c51cc7c

Browse files
committed
BBump minSdk of integreation test projects to 26 to bypass desugaring
1 parent 63db5c1 commit c51cc7c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

embrace-gradle-plugin-integration-tests/fixtures/android-3rd-party-symbols/customLibrary/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ android {
1515
compileSdk 36
1616

1717
defaultConfig {
18-
minSdk 24
18+
minSdk 26
1919
ndk {
2020
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' // Supported architectures
2121
}

embrace-gradle-plugin-integration-tests/fixtures/android-instrumentation/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ android {
6060
defaultConfig {
6161
applicationId = "com.example.app"
6262
targetSdk = 36
63-
minSdk = 24
63+
minSdk = 26
6464
versionCode = 1
6565
versionName = "1.0"
6666
}

embrace-gradle-plugin-integration-tests/fixtures/android-local-and-3rd-party-symbols/customLibrary/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ android {
1515
compileSdk 36
1616

1717
defaultConfig {
18-
minSdk 24
18+
minSdk 26
1919
ndk {
2020
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' // Supported architectures
2121
}

embrace-gradle-plugin-integration-tests/fixtures/react-native-android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
minSdk = 24
3+
minSdk = 26
44
compileSdk = 36
55
targetSdk = 36
66
ndkVersion = "26.1.10909125"

embrace-gradle-plugin-integration-tests/src/main/java/io/embrace/android/gradle/integration/framework/IntegrationTestExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ abstract class IntegrationTestExtension(objectFactory: ObjectFactory) {
9191
defaultConfig {
9292
applicationId = "com.example.app"
9393
targetSdk = 36
94-
minSdk = 24
94+
minSdk = 26
9595
versionCode = 1
9696
versionName = "1.0"
9797
}

0 commit comments

Comments
 (0)