please help me i need to rename a project i am working on. So it would show a different name after i put it on device
2 Answers
Accepted Answer
open tiapp.xml and switch to tiapp.xml from overview, then change the name in the name section.it looks like
<deployment-targets> <target device="mobileweb">true</target> <target device="iphone">true</target> <target device="ipad">true</target> <target device="android">true</target> <target device="blackberry">false</target> </deployment-targets> <sdk-version>2.1.0.GA</sdk-version> <id>com.abc.concept</id> <name>concept</name> <version>1.0</version>name section is shown just above the
version
You need create the file "app.xml" on the i18n>en folder with this content:
<?xml version="1.0" encoding="UTF-8"?> <resources> <string name="appname">Titanio japanis</string>
</resources>
Your Answer
Think you can help? Login to answer this question!