Skip to content

Commit

Permalink
Merge pull request #27 from oxters168/GradleUpgrade
Browse files Browse the repository at this point in the history
Gradle upgrade
  • Loading branch information
oxters168 authored Feb 9, 2024
2 parents 4c67c09 + 88677a0 commit c79fbad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ if (keystorePropertiesFile.exists()) {
}

android {
if (keystoreProperties != null) {
signingConfigs {
release {
compileSdk 33

signingConfigs {
release {
if (keystoreProperties != null) {
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
}
}
}
compileSdkVersion 33
buildToolsVersion "30.0.3"

defaultConfig {
applicationId "com.OxGames.OxShell"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.0'
classpath 'com.android.tools.build:gradle:8.1.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down

0 comments on commit c79fbad

Please sign in to comment.