change app name in eclipse without creation new Project in sencha touch - sencha-touch-2

I am new in sencha,
I have design one app and deployed on tablet using eclipse.
I want to change APP name without creating new Eclipse project.
How should I do that. Please provide steps.
Thanks

you can use this steps -
go to res file -> values -> strings.xml....
MitsuhoSdn Bhd
Hello world!
Settings

Select the project and then there is this key shortcut:
Alt + Shift + R
There you can rename your project and it will update all the other related files.

Related

can't extract react-native blank template for a new project

i'm trying to create a new project in react-native but I still can't because it ask me to choose a template for my project, when I choose blank template, it download it but it still can't extract it. it look like there's a problem with a file named 'zlib'. it's my first project in react-native and i'm new on it. please help me solve it! thanks.
Below is the screenshoot I got when execute the command 'create-react-native-app MoviesAndMe' in order to create a react-native app named 'MoviesAndMe'

How to customize about in RCP 4 application

We are working on RCP4 envelopment and we are trying to implement about action inside menu bar. In RCP 3 application IworkbenchAction used to create this type of action but we don't have similar feature in RCP4 . Could you please some one help on this.
Thanks in advance
There is no default About dialog in a pure e4 application you have to write your own. One reason for this is that the Eclipse RCP 3 About dialog depends heavily on the 'p2' update system - many e4 RCPs don't need to include the p2 plugins.
So you just use a normal HandledMenuItem to connect to a command. By convention the command should have the id org.eclipse.ui.help.aboutAction - this will allow Eclipse to move the menu to the correct place on macOS.

Add external libraries to my project issue

I try to add external library to my current project, but my project can't pick up the library.
I have MyLib.java file in other directory.
/Users/cat/myfile/github/JavaLib/MyLib.java
I want to my current project (/home/project/HelloWorld/HellowWorld.java) to use my MyLib.java
I'm following the steps to add Library to Intellij(15CE)
Menu->Project Structure->Libraries
click (+) symbol->select Java -> select my path(/home/lib/)
Here is the screenshot
Now that you have added your JavaLib directory to the project you should be able to use the code inside JavaLib in your code now. Intellij should offer auto-complete when you start to type the name of a JavaLib class and automatically include the import for you in your code.
The disabled Apply button you circled isn't an issue. I get that in my view too. It just means nothing has changed that needs to be applied currently.

How do I create a file with the iOS\Cocoa Touch\Objective-C class template in Xcode

Forgive how simple this might sound but I'm stuck and need help. I am putting In App Purchases into may first app, which is not yet released. (So I'm very new)
I have been using a tutorial by Ray Wenderlich. I have just finished starting the Master Detail Application Template. Now it says I need to create a IAPHelper class which will be my class for the IAP the step I am on says to "create a file with the iOS\Cocoa Touch\Objective-C class template". However when I open Xcode and I select new project, I don't see this option. It has Single View Application etc.. the closest thing I see is Cocoa Touch Static Library.
Can someone tell me how I "create a file with the iOS\Cocoa Touch\Objective-C class template". I'm lost, do I do it from inside the Master Application Template? Or do I use some other template name like utility or empty application or Cocoa Touch Static Library? Or do I not have this in my version of Xcode? Or am I totally coming at this the wrong way? ahhhh!lol
I have Xcode 4.3.2
I know this is probably a no-brainer for some but not for me :(
Thanks for the help :)
In the current project you are working in, right click on a file and click "New File..." or go to File>New>File and then you will probably want a Objective-c class objection under Cocoa Touch
You need to do this in the same project which you have done till now. What you are trying to do is to create new project where as the tutorial is asking you to create new file. You have to do this in the same project which you are working on. In order to do that there is an option in file menu to add a new file to project.

migrate to equinox P2 for update site - Juno

I am trying to migrate an update-site plugin for my product from eclipse equinox to Juno , when I create a new plugin project and copy paste all the src files and change the META-INF as per the previous proj, I get lots of compilation errors.Reason being org.eclipse.update.core removed from Juno.So i have to migrate this existing project to equinox P2.But couldnt find a way to do so as i am completely new to RCP/plugin development.Can someone help me with some pointers. I get "cannot be resolved in to a type error for the following"
UpdateSearchRequest
ContentEntryModel
IFeature
IURLEntry
ICategory
Messages
IFeatureReference
IUpdateModelChangedListener
ISite
IIncludedFeatureReference
etc...
http://plosquare.blogspot.com/2009/05/migrating-eclipse-update-sites-to-p2.html
Perhaps the above might help.
I'd suggest something like the following to get started:
Open the Plug-ins View via Window->Show View->Other...->Plug-in Development->Plug-ins
Select all the plug-ins, right click and select "Add to Java Search..."
Ctrl-O and type one of the class files you listed above
This will allow you to open editors for those classes to see if they're still around. From the editor, you can figure out what Plug-in they're in and start fixing your Plug-in Dependencies in the Manifest Editor. Then you can start fixing the imports in your source either by hand or via Organize imports.