Skip to content

Commit 681404a

Browse files
jamesnroktclaude
andcommitted
feat: widen urbanairship-core dependency to any 20.x
Replace the pinned `urbanairship-core:20.3.0` with a bounded range `[20.3.0,21.0.0)` so consumers can opt into newer 20.x versions (20.4.0–20.7.x available today) without waiting for a kit release. The closed upper bound at 21.0.0 keeps a future Airship major out of the resolved set, so consumers explicitly opt in to 21.x via a new kit release. Consumers who want a specific 20.x can pin it in their own app: implementation 'com.urbanairship.android:urbanairship-core:20.6.0' Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 780fcbd commit 681404a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ android {
6161

6262
dependencies {
6363
compileOnly 'androidx.legacy:legacy-support-v4:1.0.0'
64-
api 'com.urbanairship.android:urbanairship-core:20.3.0'
64+
// Allow any 20.x; consumers can override to a specific 20.x in their app build.
65+
api 'com.urbanairship.android:urbanairship-core:[20.3.0,21.0.0)'
6566
testImplementation 'junit:junit:4.13.2'
6667
testImplementation files('libs/java-json.jar')
6768
}

0 commit comments

Comments
 (0)