Skip to content

Commit 2748997

Browse files
committedDec 29, 2023
Bump com.android.billingclient library to v6.1.0
1 parent 062e23d commit 2748997

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed
 

‎UPGRADING.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## Upgrading Android In-App Billing v3 Library
22

3+
### Upgrading from 2.0.x to 2.1.0
4+
5+
This release updates `com.android.billingclient:billing` library from version 4 to version 6.
6+
While your apps will probably continue to work, you still need to follow steps from official
7+
upgrade guide https://developer.android.com/google/play/billing/migrate-gpblv6 to make sure you're
8+
ready for future library updates from Google
9+
310
### Upgrading from 1.x to 2.0.0
411

512
Starting from Nov 1, 2021 Google will stop supporting v2 billing client library used as a dependency here.

‎library/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
androidTestImplementation 'androidx.test:rules:1.4.0'
3434
androidTestImplementation 'androidx.test:runner:1.4.0'
3535
implementation 'androidx.annotation:annotation:1.3.0'
36-
implementation 'com.android.billingclient:billing:4.0.0'
36+
implementation 'com.android.billingclient:billing:6.1.0'
3737
}
3838

3939
task androidJavadocs(type: Javadoc) {
@@ -68,7 +68,7 @@ afterEvaluate {
6868

6969
groupId = 'com.anjlab.android.iab.v3'
7070
artifactId = 'library'
71-
version = '2.0.3'
71+
version = '2.1.0'
7272

7373
pom {
7474
name = 'Android In-App Billing v3 Library'

‎sample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'com.android.application'
66
dependencies {
77
implementation project(':library')
88
// implementation fileTree(dir: 'libs', include: '*.jar')
9-
// implementation 'com.anjlab.android.iab.v3:library:2.0.0.1'
9+
// implementation 'com.anjlab.android.iab.v3:library:2.1.0'
1010
implementation 'androidx.annotation:annotation:1.3.0'
1111
}
1212

0 commit comments

Comments
 (0)
Please sign in to comment.