Android - API 在发布应用中使用 charles 代理可见 - 如何在发布应用中保护 api 详细信息?
Android - API visible using charls proxy in release app - How to secure api details in release app?
在我的发布应用程序中,我可以使用字符获取 api 详细信息。然而,在其他应用程序中,字符在 api 详细信息的情况下显示未知。
我怎样才能达到同样的效果?我需要保护 api.
AndroidManifest
<application
android:allowBackup="true"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_config"
android:roundIcon="@drawable/app_icon"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="false">
我只需要在基础中使用 https 而不是 http url
在我的发布应用程序中,我可以使用字符获取 api 详细信息。然而,在其他应用程序中,字符在 api 详细信息的情况下显示未知。
我怎样才能达到同样的效果?我需要保护 api.
AndroidManifest
<application
android:allowBackup="true"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_config"
android:roundIcon="@drawable/app_icon"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="false">
我只需要在基础中使用 https 而不是 http url