我基于相同的核心库(包含整个UI和所有业务逻辑)为多个客户开发软件。如果一切都很简单,我会从启动项目中引用该库,并使用变量修改核心库中的不同标签。
例如:
Core library : com.test.core
package (and apk) 1 : com.test.core.customer1
apk 2 : com.test.core.customer2
最终结果:对矿石包装进行了一些改造,以便开始包装(标签等)。
我试图改变起始包上的语言(例如package1 = fr,package2 = es):Launch an android application with different resource file
但缺点很简单:如果我使用某些Android功能,例如复制/粘贴,则会显示错误的语言。
一个想法是配置eclipse与ant(或类似的东西)在编译时修改在我编译customer1或customer2但是我不知道怎么做
我使用Eclipse Juno和使用android> = 3.2的应用程序。
此致
答案 0 :(得分:0)
这种情况可以用ant解决。
我下载了ant-contrib并将其放在C:\ ant-contrib \ ant-contrib-1.0b3.jar
在项目中,我创建了文件 specific / lm / strings.xml 。
我创建了custom_rules.xml文件并使用ant。
启动它它使用 lm 属性,该属性应设置为true。您还可以使用目标 lm 。
<?xml version="1.0" encoding="UTF-8"?>
<project
name="com.test"
default="help" >
<target name="lm">
<property name="lm" value="true"/>
</target>
<taskdef resource="net/sf/antcontrib/antcontrib.properties" >
<classpath>
<pathelement location="C:/ant-contrib/ant-contrib-1.0b3.jar" />
</classpath>
</taskdef>
<if>
<equals
arg1="${lm}"
arg2="true" />
<then>
<property name="startproject" value="specific/lm"/>
<echo message="Build spécial LM / Projet : ${startproject}" />
</then>
</if>
<copy file="${startproject}/strings.xml"
tofile="res/values/strings.xml"
overwrite="true" />
</project>
你也可以使用maven Skinning Android app with Maven build profiles