Как преодолеть ошибку -package unresolved "file_name" - в manifest.xml?
Я разрабатываю приложение Media Player. Я реализовывал
MediaButtonReceiver
(который используется для управления медиа-входами, поступающими с наушников, Bluetooth, как внешние устройства).
Но при объявлении получателя в файле Android.xml я обнаружил эту ошибку, в которой говорится о неразрешенном пакете "media".
AndroidManifest.xml
Ошибки
Unresolved package 'session'
Unresolved class 'MediaButtonReceiver'
Class referenced in the manifest, `com.example.android.MediaPlaybackService`, was not found in the project or the libraries
Unresolved package 'android'
Unresolved class 'MediaPlaybackService'
build.gradle: приложение
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.example.helloworld"
minSdkVersion 16
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
Файл Android.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloworld">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.HelloWorld">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="android.support.v4.media.session.MediaButtonReceiver">
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</receiver>
<service android:name="com.example.android.MediaPlaybackService" >
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</service>
</application>
</manifest>
2 ответа
«Неразрешенный пакет/ссылка» означает, что поддерживающая библиотека не существует. Согласно изумительному документу Android dev, вы должны загрузить его, добавив следующий код вGradle Scripts > build.gradle (Module: xxx.app)
внутриdependencies{}
, выполните повторную синхронизацию, и ошибка исчезнет сandroidx.media.session.MediaButtonReceiver
implementation("androidx.media:media:1.6.0")
и добавьте этот код, чтобы ошибка исчезла изandroid.support.v4.media.session.MediaButtonReceiver
implementation("com.android.support:support-media-compat:28.0.0")
Возможно, попробуйте объявить его в AndroidManifest.xml , как указано в документации (для AndroidX):
<receiver android:name="androidx.media.session.MediaButtonReceiver" >
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</receiver>