I am getting the following message from Dropbox about my apps use of Dropbox. Saying my apps Dropbox function will stop working April 13 2022 if not fixed.
What changes do I need to make for my app to use TLS 1.2 or 1.3?
Or is this controlled by the device my app is run on. So the problem is users running my app on older version of Android that don't support the higher levels of TLS?
I have the following in the Manifest file which allows very old version of Android to run my app,
My app uses OkHttpUtil2 version 2.96.Action Required: The Dropbox API will no longer accept TLS 1.0 or 1.1
What changes do I need to make for my app to use TLS 1.2 or 1.3?
Or is this controlled by the device my app is run on. So the problem is users running my app on older version of Android that don't support the higher levels of TLS?
I have the following in the Manifest file which allows very old version of Android to run my app,
Code:
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="30"/>