39

Xamarin: Managing HTTP & Cleartext Traffic on Android with Network Security...

 4 years ago
source link: https://www.tuicool.com/articles/QFrQbmB
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

James

May 17th, 2019

Did you know that starting with Android 9 (API level 28) cleartext(non-HTTPS) support is disabled by default? It is always recommended to make connections over HTTPS to ensure that any web communication is secure. This policy may have an impact on your development cycle if your app needs to download an image or file on a server hasn’t been configured for HTTPS. Also, you may just be trying to debug your application locally and don’t want to install development certs. You may have strong business requirements that all web traffic on all versions of Android is always HTTPS. This is where the new Network Security Configuration feature of Android comes in, to help us finely tune network traffic security in our app.

jqEnayJ.png!web

When does Cleartext apply?

Cleartext is disabled by default on Android 9 (Pie, API 28) devices when your application is set to target and compile against Android 9. On the project’s properties you will find the SDK you are compiling against under Application:

2Y3uI3V.png!web

Inside of your Android Manifest options you will find the Target Framework that can be set to Android 9:

JFNbyyE.png!web

Network Security Config

To configure security options, you will create a new xml file under Resources/xml named network_security_config.xml .

3Avmimq.png!web

The following configuration will enable cleartext web traffic to be allowed in our app for specific domains and IP addresses:

 
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
  <domain-config cleartextTrafficPermitted="true">
    <domain includeSubdomains="true">10.0.2.2</domain> <!-- Debug port -->
    <domain includeSubdomains="true">xamarin.com</domain>
  </domain-config>
</network-security-config>
 

You can strengthen the security of your app by also restricting cleartext traffic on all versions of Android regardless of the compile and target framework. This is accomplished by setting cleartextTrafficPermitted to false . Enabling this will restrict any traffic that is non-HTTPS at all times.

Configure Application Manifest

The last thing that needs to be done is to configure the networkSecurityConfig property on the application node in the Android Manifest:

 
<?xml version="1.0" encoding="utf-8"?>
<manifest>
    <application android:networkSecurityConfig="@xml/network_security_config">
        ...
    </application>
</manifest>
 

That’s it! Now the application is completely configured to allow or restrict cleartext during web requests.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK