michealbell
michealbell

Reputation: 65

Change application signature?

Suppose I want to give someone my application. Now I want to give it to someone else but with a different application signature. What can I change in my code that changes the application signature? Can It be a variable name? What can it be?

Upvotes: 1

Views: 663

Answers (1)

MSalters
MSalters

Reputation: 180295

Anything that causes a binary change is OK. A single string change, such as "build 4321" -> " build 4322" is already sufficient.

Variable names are almost always stripped from executables. (There are some debug settings which may affect this, but you shouldn't release debug binaries)

Upvotes: 1

Related Questions