Skip to content

Commit f9ea654

Browse files
committed
Change XR module to use targetSdk and compileSdk from central libs file.
1 parent 130ad6d commit f9ea654

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ okHttp = "5.1.0"
6464
playServicesWearable = "19.0.0"
6565
protolayout = "1.3.0"
6666
recyclerview = "1.4.0"
67-
targetSdk = "35"
67+
targetSdk = "36"
6868
tiles = "1.5.0"
6969
tracing = "1.3.0"
7070
validatorPush = "1.0.0-alpha08"

xr/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ plugins {
66

77
android {
88
namespace = "com.example.xr"
9-
compileSdk = 35
9+
compileSdk = libs.versions.compileSdk.get().toInt()
1010

1111
defaultConfig {
1212
applicationId = "com.example.xr"
1313
minSdk = 34
14-
targetSdk = 35
14+
targetSdk = libs.versions.targetSdk.get().toInt()
1515
versionCode = 1
1616
versionName = "1.0"
1717
}

0 commit comments

Comments
 (0)