我正在尝试按照此处的教程:https://developer.android.com/training/camera/photobasics.html#TaskPath
使用相机拍照并拍照。有一次,我们解释说必须在清单中提供一个提供者(ahah)来存储我们用相机拍摄的照片。
这是我的问题,提供程序在编译时无法识别,我的构建失败。我通过搜索显然知道,这个错误意味着我的标签放错了地方。嗯...如果我移动它Android SMARTLY(是的,这是讽刺的)在这里重新生成它而不要求任何东西。而且显而易见的是它没有成功。
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.matthieu.projet"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="25" />
<uses-permission android:name="android.permission.MANAGE_DOCUMENTS" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-feature
android:name="android.hardware.camera"
android:required="true" />
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.example.android.fileprovider"
android:exported="false"
android:grantUriPermissions="true" >
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<meta-data
android:name="android.support.VERSION"
android:value="25.3.1" />
<application
android:allowBackup="true"
android:debuggable="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:testOnly="true"
android:theme="@style/AppTheme" >
<activity android:name="com.example.matthieu.projet.MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name="com.android.tools.ir.server.InstantRunContentProvider"
android:authorities="com.example.matthieu.projet.com.android.tools.ir.server.InstantRunContentProvider"
android:multiprocess="true" />
</application>
</manifest>
如果您需要更多信息,请与我们联系。
答案 0 :(得分:0)
您正在编辑错误的清单文件。忽略在IDE中弹出的那个,因为它是作为构建过程的一部分生成并且错误显示的那个,由this three-year-old Android Studio bug提供。
返回您的模块并编辑原始清单。
有关详情,请参阅this blog post。