Android创建项目名称属性

时间:2014-05-21 15:54:23

标签: android command-line-interface

我一直在玩创建Android项目的CLI。它似乎工作正常,除了忽略-n或--name参数,而是使用-a / - activity值创建strings.xml。例如

android create project -t android-19 -p ./platforms/android -k com.ex.Foo -a FooActivity -n Foo

我希望在strings.xml中看到

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">Foo</string>
</resources>

但相反,我看到了

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">FooActivity</string>
</resources>

0 个答案:

没有答案