Android Question How secure my data in app

Pooya1

Active Member
Licensed User
Oh my god android security level is very low
When i use API in my app and send key to it,sniffer can see it
In all way,hacker can get my key and access to my API in host
How prevent sniff it or is there way for obfuscate it?
Does the SSL help me for hide original data?
And how use SSL in HTTP library?
Thanks
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Code obfuscation, which is important, will not help in the case of non-encrypted http transfers.
Does the SSL help me for hide original data?
Yes.

And how use SSL in HTTP library?
Don't use the Http library. Use OkHttpUtils2. Just change http:// with https://
 
Upvote 0

Pooya1

Active Member
Licensed User
Code obfuscation, which is important, will not help in the case of non-encrypted http transfers.

Yes.


Don't use the Http library. Use OkHttpUtils2. Just change http:// with https://
OKHttp is very good
How prevent sniff?If i use https,anyone cannot see in sniff or see but it is obfuscated?
 
Upvote 0
Top