android.support.v4.content.FileProvider 未找到
android.support.v4.content.FileProvider not found
我正在尝试升级一个可用的旧应用程序以支持 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'
}
}
}
创建您的 class
import android.support.v4.content.FileProvider;
public class GenericFileProvider extends FileProvider {
}
将此提供商添加到您的 AndroidManifest.xml 应用程序标签下:
<provider
android:name=".utilities.GenericFileProvider"
android:authorities="${applicationId}.utilities.GenericFileProvider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
将 compile 'com.android.support:support-v4:26.1.0'
添加到应用程序模块中的 build.gradle 文件。
从 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 系统库。
我用较新的版本替换了它,即:androidx.core.content.FileProvider
这对我有用。
对于 androidx
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
而不是
import android.support.v4.content.FileProvider;
尝试导入
import androidx.core.content.FileProvider;
改为
public class FileProvider extends androidx.core.content.FileProvider {
}
使用以下命令解决了我的问题:
npm install jetifier --save
npx jetify
npx cap sync
我正在尝试升级一个可用的旧应用程序以支持 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'
}
}
}
创建您的 class
import android.support.v4.content.FileProvider;
public class GenericFileProvider extends FileProvider {
}
将此提供商添加到您的 AndroidManifest.xml 应用程序标签下:
<provider
android:name=".utilities.GenericFileProvider"
android:authorities="${applicationId}.utilities.GenericFileProvider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
将 compile 'com.android.support:support-v4:26.1.0'
添加到应用程序模块中的 build.gradle 文件。
从 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 系统库。
我用较新的版本替换了它,即:androidx.core.content.FileProvider
这对我有用。
对于 androidx
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
而不是
import android.support.v4.content.FileProvider;
尝试导入
import androidx.core.content.FileProvider;
改为
public class FileProvider extends androidx.core.content.FileProvider {
}
使用以下命令解决了我的问题:
npm install jetifier --save
npx jetify
npx cap sync