我正在为Android开发NativeScript应用程序,并希望实现托管配置,如下所述:https://developer.android.com/work/managed-configurations.html。
我尝试将app_restrictions.xml添加到App_Resources / Android / values文件夹,但是我收到以下构建错误:
任务执行失败':mergeF0F1DebugResources'。 错误:不支持的类型'限制'
这是app_restrictions.xml的内容:
<?xml version="1.0" encoding="utf-8"?>
<restrictions xmlns:android="http://schemas.android.com/apk/res/android">
<restriction
android:key="downloadOnCellular"
android:restrictionType="bool"
android:defaultValue="true" />
</restrictions>
NativeScript是否支持添加此类限制?如果是,我如何添加限制资源文件。如果没有,是否有其他方法来实现托管配置?
编辑:pkanev在评论中解决了这个问题。限制文件必须放在App_Resources / Android / xml中。