Skip to content

Instantly share code, notes, and snippets.

@abhishekgargx
Forked from erkattak/AndroidManifest.xml
Created June 28, 2020 14:19
Show Gist options
  • Select an option

  • Save abhishekgargx/8a1167af691b494ef5d49c603461959d to your computer and use it in GitHub Desktop.

Select an option

Save abhishekgargx/8a1167af691b494ef5d49c603461959d to your computer and use it in GitHub Desktop.
Android Application Setup for use with Charles Proxy
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:networkSecurityConfig="@xml/network_security_config">
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<debug-overrides>
<trust-anchors>
<!-- Trust user added CAs while debuggable only -->
<certificates src="user" />
</trust-anchors>
</debug-overrides>
</network-security-config>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment