Reputation: 1163
The package name on top of the java files, can it be set in one spot such as the strings file?
pseudo code
package com.website.app_name; <=======
imports....
public class Main extends Activity{}
Upvotes: 1
Views: 188
Reputation: 27549
No You can not do that, Like you can not change import statement like import com.xyz.ABC
with a string.
And why one would even need this.
Upvotes: 1