I want my app users to upload documents to a common dropbox account. My app is developed in kivy. In the main.py
, dropbox authecation token is present . Once compile it using buildozer
to .apk
. Is there some way a user can get hold of the token from the .apk
file.
The (advanced) user can decompile your .apk
and read the source code. You need to do code obfuscation (e.g. with proguard) to protect your source code.
See also: