Installation did not succeed. The application could not be installed.解决办法

it2024-11-17  17

1、出现了这个问题,很大的可能是AndroidManifest文件中的“”出了问题,比如我的

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

就是authorities出了问题,与Java代码中的不一样,改了就解决了。

2、还有一种可能就是你的资源文件命名出了问题,比如布局文件名称大写啊,或者图片文件命名出了问题。

 

最新回复(0)