Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vaslabs committed Jan 14, 2025
1 parent c2ccdc7 commit fe29855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scalalib/src/mill/javalib/android/AndroidAppModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -896,13 +896,13 @@ trait AndroidAppModule extends JavaModule {

private def androidDebugKeystore: Task[PathRef] = Task(persistent = true) {
val debugFileName = "mill-debug.jks"
val globalDebugFileLocation = os.home / ".android"
val globalDebugFileLocation = os.home / ".mill-android"

if (!os.exists(globalDebugFileLocation)) {
os.makeDir(globalDebugFileLocation)
}

val debugKeystoreFile = os.home / ".android" / debugFileName
val debugKeystoreFile = globalDebugFileLocation / debugFileName

if (!os.exists(debugKeystoreFile)) {
// TODO test on windows and mac and/or change implementation with java APIs
Expand Down

0 comments on commit fe29855

Please sign in to comment.