mattFllr
mattFllr

Reputation: 253

How do I rename a package in Android Studio?

I've just installed Android Studio and either the files were not correct in the first place or I've messed up the import process.

My project's gen folder is showing the package as com.example.something and my src folder is showing the package as com.myname.something as it should. How can I change the name of the package in the gen folder to match that of the src folder?

I think as a result I'm getting R errors and it's driving me mad!

Thanks muchly.

Upvotes: 3

Views: 1858

Answers (3)

rivare
rivare

Reputation: 827

The newest version of the gradle plugin (0.4.3) should solve these problem. More information here

Make sure to use "com.android.tools.build:gradle:0.4.+" as dependency in your gradle.build file to get always the latest version.

Upvotes: 1

mattFllr
mattFllr

Reputation: 253

I created a new project and imported the files manually in the end. No R errors now either. If anyone knows of an easier way please let me know though!

Upvotes: 1

Yakiv Mospan
Yakiv Mospan

Reputation: 8224

Try to call from menu Build - > Rebuild Project.

Upvotes: 2

Related Questions