Skip to content

Commit

Permalink
fix File
Browse files Browse the repository at this point in the history
bruh moment
  • Loading branch information
AwkwardPeak7 committed Jan 17, 2025
1 parent abaea11 commit 210a116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ android {
manifest.srcFile "AndroidManifest.xml"

if (!manifest.srcFile.exists()) {
def buildDir = layout.buildDirectory.get()
def buildDir = layout.buildDirectory.get().getAsFile().path
mkdir(buildDir)
File tempFile = File(buildDir, "tempAndroidManifest.xml")
File tempFile = new File(buildDir, "tempAndroidManifest.xml")
if (!tempFile.exists()) {
tempFile.withWriter {
it.write('<?xml version="1.0" encoding="utf-8"?>\n<manifest />\n')
Expand Down

0 comments on commit 210a116

Please sign in to comment.