gpt4 book ai didi

java - 未找到 android.support.v4.content.FileProvider

转载 作者:搜寻专家 更新时间:2023-10-30 20:54:47 24 4
gpt4 key购买 nike

我正在尝试升级一个可用的旧应用程序以支持 Android API 26,我需要使用的其中一件事是 android.support.v4.content.FileProvider - 但找不到它。

    <provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>

由于早期的 Android 构建,gradle 文件看起来很简单。添加依赖这么简单吗?我环顾四周,有人建议添加一个我不明白的 multidex。感谢您的帮助,谢谢!

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'

defaultConfig {
applicationId "virtualgs.spaint"
minSdkVersion 22
targetSdkVersion 26
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}

最佳答案

从 AndroidX(重新打包的 Android 支持库)开始,路径为 androidx.core.content.FileProvider 因此更新后的提供者标签为:

<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>

Android 支持库现在位于 androidx.* 包层次结构中。

android.* 现在保留给内置的 Android 系统库。

关于java - 未找到 android.support.v4.content.FileProvider,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48534293/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com