apk中缺少资源
Resources are missing in apk
我正在尝试将 .wav 文件添加到我的 React Native 应用程序,但 Android 实施出现问题。
该文件不断从构建中删除(当我解压缩 apk 时,它在 res/raw 文件夹中丢失)。
文件夹结构:
keep.xml内容:
<?xml version="1.0" encoding="utf-8"?>
<resources
xmlns:tools="http://schemas.android.com/tools"
tools:keep="@raw/push_notification_sound"
/>
build.gradle
中所有构建类型的收缩和缩小都被禁用:
minifyEnabled false
shrinkResources false
知道这背后的原因是什么吗?
我的坏本应该把资产放到android/app/src/main/res/raw/
我正在尝试将 .wav 文件添加到我的 React Native 应用程序,但 Android 实施出现问题。 该文件不断从构建中删除(当我解压缩 apk 时,它在 res/raw 文件夹中丢失)。
文件夹结构:
keep.xml内容:
<?xml version="1.0" encoding="utf-8"?>
<resources
xmlns:tools="http://schemas.android.com/tools"
tools:keep="@raw/push_notification_sound"
/>
build.gradle
中所有构建类型的收缩和缩小都被禁用:
minifyEnabled false
shrinkResources false
知道这背后的原因是什么吗?
我的坏本应该把资产放到android/app/src/main/res/raw/