Skip to content

Commit

Permalink
Android: maintenance (#724)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shchvova authored Aug 18, 2024
1 parent dab3ee6 commit f099dda
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions platform/android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@ buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21")
classpath("com.android.tools.build:gradle:8.5.1")
classpath("com.beust:klaxon:5.0.1")
classpath("com.beust:klaxon:5.5")
}
}

allprojects {
repositories {
google()
jcenter()
mavenCentral()
// maven(url = "https:// some custom repo")
val nativeDir = if (System.getProperty("os.name").toLowerCase().contains("windows")) {
val nativeDir = if (System.getProperty("os.name").lowercase().contains("windows")) {
System.getenv("CORONA_ROOT")
} else {
"${System.getenv("HOME")}/Library/Application Support/Corona/Native/"
Expand All @@ -27,5 +29,5 @@ allprojects {
}

tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
delete(rootProject.layout.buildDirectory.asFile.get())
}

0 comments on commit f099dda

Please sign in to comment.