user2120415
user2120415

Reputation: 67

Secure OAuth implementations in Android apps?

This may have a simple solution that I'm just not seeing, but Android apps can be decompiled, so people can extract your OAuth key and secret from your code. What is the best way to prevent this?

Upvotes: 0

Views: 73

Answers (1)

bobcat13
bobcat13

Reputation: 56

All depends on your architecture. May be the best solution is not to place secret data in apps but better in service/server application. All what can be decompiled will be decompiled. You may only gain time for exctracting data from apps by means of encryption.

Upvotes: 2

Related Questions