Skip to content

Commit

Permalink
update Gradle and BUILD_TOOLS_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wayne committed Jul 8, 2024
1 parent 619402a commit ebe69dd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
11 changes: 7 additions & 4 deletions Armadillo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ plugins {
}

android {
compileSdkVersion 33
compileSdk 34

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

defaultConfig {
minSdkVersion 21
targetSdkVersion 33
targetSdkVersion 34
versionCode 1
versionName project.LIBRARY_VERSION
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -44,6 +44,9 @@ android {
}

resourcePrefix 'arm'
buildFeatures {
buildConfig true
}
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
apply from: "$project.rootDir/gradle/shared.gradle"

dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "com.android.tools.build:gradle:$GRADLE_PLUGIN_VERSION"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ DAGGER_VERSION=2.16
MAVEN_PUBLISH_VERSION=3.6.2
DOKKA_VERSION=1.6.10
SERIALIZATON_VERSION=1.4.1
# Update package-list when updating build tools version
BUILD_TOOLS_VERSION=29.0.3
GRADLE_PLUGIN_VERSION=8.4.2
BUILD_TOOLS_VERSION=31.0.0
android.useAndroidX=true
android.enableJetifier=true
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit ebe69dd

Please sign in to comment.