0

我正在使用 SBT 并修改 Jan Berkel 的 Android 插件,我需要有关我正在尝试构建的 Android 项目的包名称的信息。

我知道包名位于 中AndroidManifest.xml,但我想知道是否有任何方法使用 SBT 来获取该包名?

4

1 回答 1

1

不太确定这是否是您需要的,但无论如何。Sbt 任务是用 scala 代码编写的,所以我们可以找到那个文件然后读取内容:

import java.io.File
import java.io.FileNotFoundException
def recursiveListFiles(f: File): Array[File] = {
  val these = f.listFiles
  if(these != null) 
    these ++ these.filter(_.isDirectory).flatMap(recursiveListFiles) 
  else Array[File]()
}

val projectFiles = recursiveListFiles(new File("."))
val manifestFile = projectFiles
  .filter(f => f.getCanonicalPath.endsWith("AndroidManifest.xml"))
  .toList.headOption
  .getOrElse(
    throw new FileNotFoundException("Your project doesn't contain manifest")
  )

val manifestXML = scala.xml.XML.loadFile(manifestFile)
val pkg = manifestXML.attribute("package").getOrElse("")
于 2012-07-27T11:56:36.860 回答