Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert compileSdk and targetSdk for library #609

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gradle/android.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
android {
compileSdk 35
compileSdk 34

defaultConfig {
minSdk 21
targetSdk 35
targetSdk 32
versionCode 1
versionName "1.0"

Expand Down
4 changes: 2 additions & 2 deletions include-build/roborazzi-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ kotlin {

android {
namespace 'com.github.takahirom.roborazzi.core'
compileSdk 35
compileSdk 34

defaultConfig {
minSdk 21
targetSdk 35
targetSdk 32

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions roborazzi-accessibility-check/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ if (System.getenv("INTEGRATION_TEST") != "true") {

android {
namespace 'com.github.takahirom.roborazzi.accessibility.check'
compileSdk 35
compileSdk 34

defaultConfig {
minSdk 21
targetSdk 35
targetSdk 32

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions roborazzi-ai-gemini/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ kotlin {

android {
namespace 'com.github.takahirom.roborazzi.ai.gemini'
compileSdk 35
compileSdk 34

defaultConfig {
minSdk 21
targetSdk 35
targetSdk 32

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions roborazzi-ai-openai/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ kotlin {

android {
namespace 'com.github.takahirom.roborazzi.ai.openai'
compileSdk 35
compileSdk 34

defaultConfig {
minSdk 21
targetSdk 35
targetSdk 32

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions roborazzi-junit-rule/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ if (System.getenv("INTEGRATION_TEST") != "true") {

android {
namespace 'com.github.takahirom.roborazzi.junit.rule'
compileSdk 35
compileSdk 34

defaultConfig {
minSdk 21
targetSdk 35
targetSdk 32

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Loading