Mika
#1
You should NOT use following words as a project name.
Else it is possible that your apk will not be created and the build will failed.
|
|
|
|
|
abstract |
continue |
for |
new |
switch |
assert |
default |
goto |
package |
synchronized |
boolean |
do |
if |
private |
this |
break |
double |
implements |
protected |
throw |
byte |
else |
import |
public |
throws |
case |
enum |
instanceof |
return |
transient |
catch |
extends |
int |
short |
try |
char |
final |
interface |
static |
void |
class |
finally |
long |
strictfp |
volatile |
const |
float |
native |
super |
while |
List from: What are Keywords, Datatypes, Variables, Literals in java? | ANDROID HEIGHT
If you know any other word which NOT works please let us know it.
EDIT
Following words are too not working:
4 Likes
That means you cannot use just the single word OR the name cannot contain it?
Mika
#4
Example:
should work: abstractcontinue
should not work: abstract
3 Likes
Okay, I thought the same. Thanks!
Mika
#6
Thanks @yoni_mic I added “true & false” to the list
hammerhai
(Nathan)
#7
Can I ask why these wont work?
Mika
#8
Because the words are used in java.
hammerhai
(Nathan)
#9
That I dont think should matter in an app name, it’s an app name, that’s stupid!
Mika
#10
It is not stupid.
Because when the apk is created it looks for errors.
And the components as you know are done in java^^
1 Like
hammerhai
(Nathan)
#11
Yes it is because, it’s in a properties file I believe, not in the java files
Sander
(Sander Jochems)
#12
public String appName = true
Hmmmmm
3 Likes