how do i change name of project in titanium studio

You must Login before you can answer or comment on any questions.

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

— asked 11 months ago by Jin An
0 Comments

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

— answered 11 months ago by Ashish Nigam
answer permalink
3 Comments
  • Ashish is right

    But remember to use Project > Clean as well - otherwise you may get errors that make you think it is not possible.

    — commented 11 months ago by Malcolm Hollingsworth

  • thx

    — commented 11 months ago by Jin An

  • this is a big help. thanks.

    — commented 3 months ago by John Paul Manoza

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!