Skip to content

Commit

Permalink
chore: Updated gradle version and compile sdk to fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxGalaxy committed Dec 26, 2023
1 parent f75fbe9 commit f0bc955
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ if (analyticsEnabled) {

android {
namespace 'com.dragon.ide'
compileSdk 33
buildToolsVersion "33.0.2"
compileSdk 34
buildToolsVersion "34.0.0"

def getCommitHash = { ->
def stdout = new ByteArrayOutputStream()
Expand Down Expand Up @@ -79,7 +79,7 @@ android {
applicationId "com.dragon.ide"
minSdk 21
targetSdk 28
compileSdkVersion 33
compileSdkVersion 34
versionCode getGitCommitCount()
versionName "1.0 Alpha01-Snapshot-" + getCommitHash() + "-commit-no-" + getGitCommitCount().toString()
buildConfigField "String", "commitSha", getCommitSha()
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.0.0' apply false
id 'com.android.library' version '8.0.0' apply false
id 'com.android.application' version '8.2.0' apply false
id 'com.android.library' version '8.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'com.google.gms.google-services' version '4.4.0' apply false
}
Expand Down
4 changes: 2 additions & 2 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ plugins {
}

android {
compileSdk 32
buildToolsVersion "33.0.2"
compileSdk 34
buildToolsVersion "34.0.0"
useLibrary 'org.apache.http.legacy'
namespace "android.code.editor.common"

Expand Down
4 changes: 2 additions & 2 deletions editor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ plugins {
}

android {
compileSdk 32
buildToolsVersion "33.0.2"
compileSdk 34
buildToolsVersion "34.0.0"
useLibrary 'org.apache.http.legacy'
namespace "editor.tsd"

Expand Down
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-8.0-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit f0bc955

Please sign in to comment.