Reputation: 17
What is the point of naming classes and packages with letters? Those classes were decompiled.
It can be some kind of protection?
Upvotes: 0
Views: 56
Reputation: 718758
What is the point of naming classes and packages with letters?
The code you are decompiling has been obfuscated to make it harder to reverse engineer.
The point is to prevent you knowing what the real package, class, method, etc names are. Because the real names would give you clues to help you understand the code.
Upvotes: 5