-
Hi, I got a problem with Euphony build. When I build Euphony project, I got an error message like below. But, I found that I have How can I solve this problem? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi! @kldaji this is the known issue! Actually, this issue occurs after clean build. Could you change for loop code(60 lines) in your build.gradle? for (abi in abiArr) {
def filePath = "euphony/.cxx/cmake/debug/$abi/$logfile"
def file = new File(filePath)
if (file.exists()) {
def lines = file.readLines()
if (lines.get(lines.size() - 1).contains(lastWordIfThereAreNoDevice))
continue
noDevice = false
resultStr += "> $abi/$logfile\n"
resultStr += lines.join("\n")
}
} It hasn't been reflected in the master branch yet. Let me know your build status after modify code like above :) |
Beta Was this translation helpful? Give feedback.
Hi! @kldaji this is the known issue!
Actually, this issue occurs after clean build.
After clean build, there are no abi log file. so, it will be occured.
Could you change for loop code(60 lines) in your build.gradle?
It hasn't been reflected in the master branch yet.
please follow this link designe@4bec7c3
Let me know your build status after modify code li…