7

我正在尝试按照 Android 文档在此处使用自定义证书。所需的网络配置文件是:

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config>
        <trust-anchors>
            <certificates src="@raw/extracas"/>
            <certificates src="system"/>
        </trust-anchors>
    </base-config>
</network-security-config>

我已经创建了 network_security_config.xml 并将引用 a 添加ndroid:networkSecurityConfig="@xml/network_security_config"到我的清单中。我有需要包含的 .crt 文件,但我遇到了两个问题:

  1. 我无法在我的原始文件夹中创建目录,当我这样做时,它会在我的文件系统中创建目录,而不是在项目的原始资源目录中。

  2. 代替目录我只是直接在原始文件夹中引用我的 .crt 文件,但是当我尝试引用证书时,这是我的 network_security_config.xml

    <?xml version="1.0" encoding="utf-8"?>
    <network-security-config>
        <base-config>
            <trust-anchors>
                <certificates src="@raw/cert_cubic_trusted_ca-sha256.crt"/>
                <certificates src="system"/>
            </trust-anchors>
        </base-config>
    </network-security-config>
    

我得到一个带有错误“缺少 src 资源”的红色曲线,当我尝试构建时,构建日志输出错误:

AGPBI: {"kind":"error","text":"error: resource raw/certname.crt (aka com.comname.appname:raw/certname.crt) not found.","sources":[{"file":"/Users/205314/project/appname/app/src/main/res/xml/network_security_config.xml","position":{"startLine":5}}],"original":"","tool":"AAPT"}
:app:processDebugResources
:app:processDebugResources FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugResources'.
> Failed to process resources, see aapt output above for details.

我不知道为什么我无法从 XML 引用原始资源文件夹中的资产或在其中创建文件夹,这似乎是我最大的问题。我可以在代码中使用 R.raw 引用原始资源,但我从来不需要使用 @raw 进行引用,而且我不确定它为什么不能按描述工作。

4

1 回答 1

16

根据访问资源文档,资源名称是

文件名,不包括扩展名

所以你需要.crt从你的src

<certificates src="@raw/cert_cubic_trusted_ca-sha256"/>
于 2019-03-12T23:22:48.213 回答