Skip to content

Commit 062e23d

Browse files
committedDec 5, 2023
update build tooling
1 parent 60a70b9 commit 062e23d

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed
 

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
google()
1414
}
1515
dependencies {
16-
classpath 'com.android.tools.build:gradle:7.0.3'
16+
classpath 'com.android.tools.build:gradle:7.4.2'
1717
classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1"
1818
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:1.2.0"
1919
}

‎gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
77
android.enableJetifier=true
88
android.useAndroidX=true

‎library/build.gradle

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ apply plugin: 'signing'
44
apply plugin: 'checkstyle'
55

66
android {
7-
compileSdkVersion 31
8-
buildToolsVersion '30.0.3'
97

108
defaultConfig {
11-
minSdkVersion 14
12-
targetSdkVersion 31
9+
compileSdk = 33
10+
buildToolsVersion = '30.0.3'
11+
12+
minSdkVersion 19
13+
targetSdkVersion 33
1314
consumerProguardFiles 'progress-proguard.txt'
1415
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1516
}

‎library/src/main/java/com/anjlab/android/iab/v3/PurchaseInfo.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
* server. An example implementation of how to verify
3131
* a purchase you can find here:
3232
* <pre>
33-
* See <a href="https://github.com/mgoldsborough/google-play-in-app-billing-verification/blob/
34-
* master/library/GooglePlay/InAppBilling/GooglePlayResponseValidator.php#L64"> here </a>
33+
* See <a href="https://t.ly/Hd76A"> here </a>
3534
* </pre>
3635
*/
3736
public class PurchaseInfo implements Parcelable

‎sample/build.gradle

+6-7
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ dependencies {
1111
}
1212

1313
android {
14-
compileSdkVersion 31
15-
buildToolsVersion '30.0.3'
16-
1714
defaultConfig {
18-
versionCode 4
19-
versionName '4.0'
20-
minSdkVersion 14
21-
targetSdkVersion 31
15+
versionCode 5
16+
versionName '5.0'
17+
minSdkVersion 19
18+
targetSdkVersion 33
19+
compileSdk = 33
20+
buildToolsVersion = '30.0.3'
2221
}
2322

2423
sourceSets.main {

0 commit comments

Comments
 (0)
Please sign in to comment.