我正在使用THYM(混合移动)Eclipse插件版本0.3在Eclipse Luna上创建Cordova项目。使用Cordova 3.7.2(Android)和Cordova 3.8(iOS)。
每次我发布时,我都会将cordova项目导出为本机项目格式(在我的例子中,Xcode格式和Android Studio格式)。但是原生项目格式的主要语言是英语,我需要为它定义另一种语言(葡萄牙语)。
我知道我可以在导出后在Xcode上的MyApp-Info.plist上手动执行此操作,但这不是我想要的,因为这使我每次创建时都会手动重复修改Eclipse上的新版本。
config.xml上的一些配置,可能吗?
答案 0 :(得分:0)
config.xml中
<config-file platform="ios" parent="CFBundleDevelopmentRegion" overwrite="true">
<string>Portuguese</string>
</config-file>
答案 1 :(得分:0)
将其放在config.xml中<platform name="ios">
标签下
<edit-config file="*-Info.plist" mode="merge" target="CFBundleDevelopmentRegion">
<string>Spanish</string>
</edit-config>