Skip to content

Commit

Permalink
update build tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
serggl committed Dec 5, 2023
1 parent 60a70b9 commit 74e695b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1"
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:1.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
android.enableJetifier=true
android.useAndroidX=true
11 changes: 6 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ apply plugin: 'signing'
apply plugin: 'checkstyle'

android {
compileSdkVersion 31
buildToolsVersion '30.0.3'

defaultConfig {
minSdkVersion 14
targetSdkVersion 31
compileSdk = 33
buildToolsVersion = '30.0.3'

minSdkVersion 19
targetSdkVersion 33
consumerProguardFiles 'progress-proguard.txt'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand All @@ -32,7 +33,7 @@ dependencies {
androidTestImplementation 'androidx.test:rules:1.4.0'
androidTestImplementation 'androidx.test:runner:1.4.0'
implementation 'androidx.annotation:annotation:1.3.0'
implementation 'com.android.billingclient:billing:4.0.0'
implementation 'com.android.billingclient:billing:6.1.0'
}

task androidJavadocs(type: Javadoc) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@
* server. An example implementation of how to verify
* a purchase you can find here:
* <pre>
* See <a href="https://github.com/mgoldsborough/google-play-in-app-billing-verification/blob/
* master/library/GooglePlay/InAppBilling/GooglePlayResponseValidator.php#L64"> here </a>
* See <a href="https://t.ly/Hd76A"> here </a>
* </pre>
*/
public class PurchaseInfo implements Parcelable
Expand Down
13 changes: 6 additions & 7 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ dependencies {
}

android {
compileSdkVersion 31
buildToolsVersion '30.0.3'

defaultConfig {
versionCode 4
versionName '4.0'
minSdkVersion 14
targetSdkVersion 31
versionCode 5
versionName '5.0'
minSdkVersion 19
targetSdkVersion 33
compileSdk = 33
buildToolsVersion = '30.0.3'
}

sourceSets.main {
Expand Down

0 comments on commit 74e695b

Please sign in to comment.