合并错误:错误:需要为元素显式指定android:exported
我甚至不知道该怎么办。我为这个错误挣扎了整整一周,但我不能。
这是我的sdk版本
compileSdkVersion 32
defaultConfig {
multiDexEnabled true
applicationId "com.example.app"
minSdkVersion 21
targetSdkVersion 32
versionCode 53
versionName "2.0.4"
ndk.abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
在所有意向过滤器
、服务
和提供商
上编写了android:exported
。啊,我没有这个错误中提到的接收器。
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation "com.android.billingclient:billing:4.0.0"
implementation "com.google.firebase:firebase-messaging:23.0.0"
implementation "com.google.firebase:firebase-crashlytics:18.2.7"
implementation "com.google.firebase:firebase-analytics:20.0.2"
implementation "com.google.firebase:firebase-perf:20.0.4"
implementation "com.google.firebase:firebase-dynamic-links:21.0.0"
implementation 'com.google.firebase:firebase-core:20.0.2'
implementation 'com.google.firebase:firebase-database:20.0.3'
implementation 'com.google.firebase:firebase-auth:21.0.1'
implementation 'com.google.firebase:firebase-config:21.0.1'
implementation "com.facebook.android:facebook-login:9.0.0"
implementation "com.facebook.android:facebook-share:[5,6)"
implementation "com.linecorp:linesdk:5.0.1"
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.10'
implementation "com.squareup.retrofit2:retrofit:2.8.1"
implementation "com.squareup.retrofit2:converter-gson:2.8.1"
implementation 'com.squareup.retrofit2:adapter-rxjava:2.3.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.2.1'
implementation 'io.reactivex:rxandroid:1.2.1'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.sun.easysnackbar:easysnackbar:1.0.1'
implementation 'com.romandanylyk:pageindicatorview:1.0.3@aar'
implementation 'com.google.android.exoplayer:exoplayer:2.16.1'
//MULTI DEX
implementation "androidx.multidex:multidex:2.0.1"
implementation 'com.google.android:flexbox:2.0.1'
implementation 'com.github.florent37:diagonallayout:1.0.9'
implementation('io.socket:socket.io-client:1.0.0') {
exclude group: 'org.json', module: 'json'
}
implementation 'com.github.instacart.truetime-android:library:3.4'
implementation 'com.github.instacart.truetime-android:library-extension-rx:3.4'
implementation "androidx.navigation:navigation-fragment-ktx:2.4.0"
implementation "androidx.navigation:navigation-ui-ktx:2.4.0"
implementation "com.github.bumptech.glide:glide:4.12.0"
annotationProcessor "com.github.bumptech.glide:compiler:4.12.0"
implementation "de.hdodenhof:circleimageview:3.1.0"
implementation "com.pixplicity.easyprefs:library:1.9.0"
implementation "com.jakewharton.timber:timber:4.7.1"
implementation "com.airbnb.android:lottie:3.4.0"
implementation 'com.github.jinatonic.confetti:confetti:1.1.2'
implementation "com.nabinbhandari.android:permissions:3.8"
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "com.github.YarikSOffice:lingver:1.2.1"
implementation 'com.github.mreram:showcaseview:1.2.0'
implementation 'com.github.shripal17:MaterialIntroView-v2:2.2.0'
implementation 'com.github.unsplash:unsplash-photopicker-android:1.0.0'
implementation 'com.giphy.sdk:ui:2.1.0'
testImplementation 'junit:junit:4.13.2'
testImplementation 'androidx.test:core:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation "androidx.test.ext:junit:1.1.3"
}
com.instacart.library.truetime.BootCompletedBroadcastReceiver
在清单文件中检查此项。。。。
检查导入的库是否与android版本兼容
重建您的项目。
分享你的清单
compileSdkVersion 32
defaultConfig {
multiDexEnabled true
applicationId "com.example.app" /// change your app Id not to use example... This will be rejected on play store
minSdkVersion 21
targetSdkVersion 32
versionCode 53
versionName "2.0.4"
//comment out this ndk.abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
发现instacart的问题。truetime库。您使用的是3.4
version
因此,您需要将这些依赖关系更新到新版本的3.5
implementation 'com.github.instacart.truetime-android:library:3.5'
implementation 'com.github.instacart.truetime-android:library-extension-rx:3.5'
构建应用程序
清单文件有问题,错误消息: 清单合并失败:android:导出需要明确指定。针对Android 12及更高版本的应用程序需要指定一个显式值为时,相应的组件定义了一个意图过滤器。详见https://developer.android.com/guide/topics/manifest/activity-element#exported。 我的Android清单: 这篇文章描述了一个解决方案,但它不起
错误:任务“:app:ProcessDebugManifest”执行失败。 清单合并失败:来自AndroidManifest.xml:13:9-42的属性application@icon value=(@mipmap/appiconnew)也存在于[com.pnikosis:materialish-progress:1.0]AndroidManifest.xml:13:9-45 value=(@d
我似乎得到了这样的错误:
问题内容: 我正在将当前项目的大型应用程序移至Android Studio和Gradle中。我目前陷入以下问题: 我尝试将以下属性添加到主文件: 这些属性定义都不起作用。我究竟做错了什么? 问题答案: 试试看: 将此添加到 将此添加到 基于此,它应该覆盖所有元素。“将低优先级声明替换为带注释的声明。”
清单合并失败:属性Application@AppComponentFactory value=(android.support.v4.app.CoreComponentFactory)来自[com.android.support:support-compat:28.0.0]AndroidManifest.xml:22:18-91 也存在于[androidx.core:core:1.0.0]andr
我在移动我目前的项目巨大的应用程序到Android Studio和Gradle的过程中。我目前被困在以下问题上: 我尝试将以下属性添加到主文件中: 这些属性定义都不起作用。我做错了什么?