Mehdiway
Mehdiway

Reputation: 10646

Sencha Touch - How to change sdk path

After creating a projects with Sencha Touch SDK folder as the parent the projects inside of it, I want to change the separate projects each one having it own touch folder, like illustrated bellow :

Before :

touch-sdk/
    project1/
    project2/
    project3/
    ...

After :

project1/
    touch-sdk/
    ...

project2/
    touch-sdk/
    ...

project3/
    touch-sdk/
    ...

What should I change to make this happen ?

Upvotes: 0

Views: 596

Answers (1)

Dinkheller
Dinkheller

Reputation: 5054

You might want to take a look at Sencha Touch Workspaces.

But to answer your question. Find the file

project/.sencha/app/sencha.cfg

find the line

app.framework=touch

and change it to the path (based on project) you want it to be

Upvotes: 1

Related Questions