IntelliJ IDEA android scala 应用程序
我正在尝试使用 scala 在 IntelliJ IDEA 中制作一个 Android 应用程序。我制作了一个 android 模块和一个 scala 模块。我只是想先简单说一下你好世界。 我添加了 scala 模块作为 android 模块的依赖项,但是当我构建项目(“make project”)或尝试运行该项目时,我收到此错误:
编写输出时
遇到问题:format == null 有谁知道问题是什么?
PS 在 netbeans 中,我什至无法添加任何内容作为 android 项目的资源。
难道这不是办法,需要修改主模块的ant脚本什么的吗?欢迎任何指点。
I am trying to make an android app in IntelliJ IDEA using scala. I made an android module and a scala module. I'm just after a little hello world for starters.
I added the scala module as a dependency for the android module but when I builde the project("make project") or try to run the thing I get this error:
trouble writing output: format == null
Does anyone know what the problem is?
P.S. In netbeans I can't even add anything as a resource for an android project.
Could it be that this is not the way to do it, do I need to modify the main module's ant script or something? Any pointers are welcomed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经使用intellij 用scala 编写了一些android 程序。但是我选择不使用intellij进行编译。相反,我使用了 sbt (http://code.google.com/p/simple-build -tool/)与 sbt android 插件(https://github.com/jberkel/android-插件)用于构建和 sbt idea 处理器(https://github.com/mpeltonen/sbt- idea)为idea创建项目文件。
I've programmed some android with scala using intellij. However I chose not to use intellij for compilation. Instead I used sbt (http://code.google.com/p/simple-build-tool/) with sbt android plugin (https://github.com/jberkel/android-plugin) for building and sbt idea processor (https://github.com/mpeltonen/sbt-idea) to create project files for idea.