Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Unreleased
- Support `@AssistedFactory` in code gen for Metro.
- Add seekable transition support to `AnimatedOverlay`.
- Add predictive back support to `FullScreenOverlay`.
- Compile against Android SDK 36.

0.28.1
------
Expand Down
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ subprojects {

// Common android config
val commonAndroidConfig: CommonExtension<*, *, *, *, *, *>.() -> Unit = {
compileSdk = 35
compileSdk = 36

if (hasCompose) {
buildFeatures { compose = true }
Expand All @@ -361,7 +361,10 @@ subprojects {
with(extensions.getByType<LibraryExtension>()) {
commonAndroidConfig()
defaultConfig { minSdk = 21 }
testOptions { targetSdk = 35 }
testOptions {
// TODO update once robolectric supports it
targetSdk = 35
}
}

// Single-variant libraries
Expand Down
2 changes: 1 addition & 1 deletion samples/bottom-navigation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
namespace = "com.slack.circuit.sample.navigation"
defaultConfig {
minSdk = 21
targetSdk = 35
targetSdk = 36
}
testOptions { unitTests { isIncludeAndroidResources = true } }
}
Expand Down
2 changes: 1 addition & 1 deletion samples/counter/apps/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
namespace = "com.slack.circuit.sample.counter.android"
defaultConfig {
minSdk = 31 // For the dynamic m3 theme
targetSdk = 35
targetSdk = 36
}
}

Expand Down
2 changes: 1 addition & 1 deletion samples/interop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
namespace = "com.slack.circuit.sample.interop"
defaultConfig {
minSdk = 28
targetSdk = 35
targetSdk = 36
versionCode = 1
versionName = "1"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion samples/star/apk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
namespace = "com.slack.circuit.sample.star.apk"
defaultConfig {
minSdk = 28
targetSdk = 35
targetSdk = 36
versionCode = 1
versionName = "1"
}
Expand Down
2 changes: 1 addition & 1 deletion samples/star/benchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ val isCi = providers.environmentVariable("CI").isPresent
android {
namespace = "com.circuit.samples.star.benchmark"
defaultConfig {
targetSdk = 35
targetSdk = 36
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down
2 changes: 1 addition & 1 deletion samples/tutorial/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
namespace = "com.slack.circuit.tutorial"
defaultConfig {
minSdk = 21
targetSdk = 35
targetSdk = 36
}
}

Expand Down
Loading