Saturday, November 5, 2016

Android Studio Rename Package

In Android Studio, you can do this:

For example, if you want to change com.example.app to my.awesome.game, then:
  1. In your Project pane, click on the little gear icon ( Gears icon )
  2. Uncheck / De-select the Compact Empty Middle Packages option
Compact Empty Middle Packages
  1. Your package directory will now be broken up in individual directories
  2. Individually select each directory you want to rename, and:
    • Right-click it
    • Select Refactor
    • Click on Rename
    • In the Pop-up dialog, click on Rename Package instead of Rename Directory
    • Enter the new name and hit Refactor
    • Allow a minute to let Android Studio update all changes
    • Note: When renaming com in Android Studio, it might give a warning. In such case, selectRename All
enter image description here
  1. Now open your Gradle Build File (build.gradle - Usually app or mobile). Update the applicationId to your new Package Name and Sync Gradle, if it hasn't already been updated automatically:
Refactor Directories
  1. Done! Anyways, Android Studio needs to make this process a little simpler.
Source:
http://stackoverflow.com/questions/16804093/android-studio-rename-package

Related Posts:

  • Mobile - PhoneGap & Android Studio Yesterday at GoogleIO, Google announced Android Studio, a new development environment for authoring Android applications. This is a great looking new IDE for Android, based off of IntelliJ IDEA, with some new… Read More
  • Mobile - Titanium Appcelerator Quick Start Tutorial 1. Download Titanium Studio     Mac | Windows | Linux 32 | Linux 64 2. Configure your en… Read More
  • Decompile Android apk to original Java source codeDex2jar: Dex2jar converts the DEX (Dalvik Executable) files to the Java source. Download and extract dex2jar from the link. https://dex2jar.googlecode.com/files/dex2jar-0.0.9.15.zip use dex2jar to generate .jar file. dex2jar… Read More
  • Android - Terminology 1. ROM - FIRMWARE: - Là phần mềm và là "hệ điều hành" trên máy điện thoại. Chính là chương trình chính để máy hoạt động mà không có nó thì máy chỉ là "cục gạch". Có người gọi là phần sụn hay sự mềm dẻo hóa phần cứng. Thực … Read More
  • Mobile - Cross-Platform Mobile Development ToolsAs mobile OSes — especially iPhone and Android — wax and wane, the pressing question remains: How do you choose which mobile devices to develop for and which devices to omit from your roadmap? Cross-OS platforms for mobile … Read More

0 comments:

Post a Comment