在编译使用elixir和phoenix web框架的项目时,会发生以下编译错误:
<ImageButton
android:id="@+id/my_awesome_button"
android:scaleType="centerInside"
android:background="@null"
android:gravity="center"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/my_awesome_drawable"/>
如何让我的项目正确编译?
答案 0 :(得分:6)
您需要同时更新phoenix_ecto和phoenix_html。试试这个:
mix deps.clean phoenix_ecto phoenix_html
mix deps.update phoenix_ecto phoenix_html
你应该好好去!
答案 1 :(得分:2)
我忘记使用mix do deps.get, compile
安装和编译我的应用程序的源代码和依赖项。我只是在phoenix目录下安装和编译。然后像上面那样发出错误。在我的应用程序下安装和编译之后。它没有错误。
答案 2 :(得分:0)
正如错误消息中明确提到的那样,请尝试:
mix deps.compile phoenix_ecto