Skip to content

Commit

Permalink
Merge pull request #76 from dokar3/dokar/upgrade-agp
Browse files Browse the repository at this point in the history
Upgrade AGP to 8.1.0
  • Loading branch information
dokar3 authored Jul 28, 2023
2 parents c7b5cfd + 57cdfbb commit 39acfbb
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ buildscript {
kotlin_version = '1.9.0'
compile_sdk = 33
target_sdk = 33
build_tools_version = "33.0.1"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath 'com.android.tools.build:gradle:8.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

classpath 'com.vanniktech:gradle-maven-publish-plugin:0.25.3'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed May 31 15:16:02 CST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
namespace 'com.dokar.sheets.sample'

compileSdk compile_sdk
buildToolsVersion = "30.0.3"
buildToolsVersion = build_tools_version

defaultConfig {
applicationId "com.dokar.sheets.sample"
Expand Down
2 changes: 1 addition & 1 deletion sheets-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
namespace 'com.dokar.sheets'

compileSdk compile_sdk
buildToolsVersion = "30.0.3"
buildToolsVersion = build_tools_version

defaultConfig {
minSdk 21
Expand Down
2 changes: 1 addition & 1 deletion sheets-m3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
namespace 'com.dokar.sheets.m3'

compileSdk compile_sdk
buildToolsVersion = "30.0.3"
buildToolsVersion = build_tools_version

defaultConfig {
minSdk 21
Expand Down
2 changes: 1 addition & 1 deletion sheets/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
namespace 'com.dokar.sheets'

compileSdk compile_sdk
buildToolsVersion = "30.0.3"
buildToolsVersion = build_tools_version

defaultConfig {
minSdk 21
Expand Down

0 comments on commit 39acfbb

Please sign in to comment.