File tree 3 files changed +10
-3
lines changed
3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
## Upgrading Android In-App Billing v3 Library
2
2
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
+
3
10
### Upgrading from 1.x to 2.0.0
4
11
5
12
Starting from Nov 1, 2021 Google will stop supporting v2 billing client library used as a dependency here.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ dependencies {
33
33
androidTestImplementation ' androidx.test:rules:1.4.0'
34
34
androidTestImplementation ' androidx.test:runner:1.4.0'
35
35
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'
37
37
}
38
38
39
39
task androidJavadocs (type : Javadoc ) {
@@ -68,7 +68,7 @@ afterEvaluate {
68
68
69
69
groupId = ' com.anjlab.android.iab.v3'
70
70
artifactId = ' library'
71
- version = ' 2.0.3 '
71
+ version = ' 2.1.0 '
72
72
73
73
pom {
74
74
name = ' Android In-App Billing v3 Library'
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ apply plugin: 'com.android.application'
6
6
dependencies {
7
7
implementation project(' :library' )
8
8
// 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 '
10
10
implementation ' androidx.annotation:annotation:1.3.0'
11
11
}
12
12
You can’t perform that action at this time.
0 commit comments