- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Merging Errors: Error: android:exported needs to be explicitly specified for element<receiver#com.instacart.library.truetime.BootCompletedBroadcastReceiver>.Apps targeting Android 12 and higher are required to specify anexplicit value for
android:exported
when the corresponding componenthas an intent filter defined. Seehttps://developer.android.com/guide/topics/manifest/activity-element#exportedfor details. test.app main manifest (this file), line 19
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
全部
intent-filter
,
service
, 和
provider
.啊,我没有
receiver
在这个错误中提到。
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"
}
最佳答案
发现 instacart.truetime
的问题图书馆。您正在使用 3.4
版本 & 他们在 3.5
中解决了这个错误如此处所述:https://github.com/instacart/truetime-android/releases/tag/3.5
所以需要将这些依赖更新到新版本的3.5
implementation 'com.github.instacart.truetime-android:library:3.5'
implementation 'com.github.instacart.truetime-android:library-extension-rx:3.5'
构建应用程序并解决问题
关于java - list 合并失败 : android:exported needs to be explicitly specified for <receiver>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71020415/
我想知道,如果我的函数没有相似的名称,我是否需要使用命名空间? 另外我无法掌握从特定文件夹导入所有命名空间的方法... 最佳答案 I'm wondering, that if my functions
我运行 2to3 -f all -f idioms -f buffer -f set_literal -f ws_comma foo.py 输出: RefactoringTool: No change
我对 RoR 还是很陌生,我正在尝试使用 button_to delete 按钮删除一个对象。但是,使用我编写的代码,当我尝试将它获取到 destroy 方法的/needs/:id 时,它会将我带到/
当我运行代码时,我在 DEBUG Console 中发现了这个错误如下图所示错误: Restarted application in 2,804ms. [38;5;248m════════ Excep
我有一个实现 __dir__ 方法的类。但是,我并不完全确定 dir API 的一些细节。 A:__dir__ 是否真的需要返回一个列表?我的实现是使用 set 来避免两次列出属性,我需要在返回之前将
我正在尝试执行对非官方 Instagram API python 库的调用,在我修复了几个需要依赖项的错误之后,我被困在了这个错误上。 File "C:\Users\Pablo\Desktop\tx
我正在使用 SingleChildScrollView 和 Column 来显示滑动条和 gridview。 如果我在我的专栏中使用一些其他小部件,如文本、图像,应用程序显示正常。但是我的swiper
我正在尝试卸载 zsh 插件 (macos),我修改了 .zshrc 文件并从 中删除了 macos >plugin 列表,并删除路径 ~/.oh-my-zsh/plugins 中的 macos 文件
我正在尝试卸载 zsh 插件 (macos),我修改了 .zshrc 文件并从 中删除了 macos >plugin 列表,并删除路径 ~/.oh-my-zsh/plugins 中的 macos 文件
Exception caught by rendering library ═════════════════════════════════ RenderBox was not laid out:
我对 Python 很陌生。我正在试用 threading模块。我遇到了 Event对象。 事件对象有wait set clear职能。我了解等待、设置和清除正在做什么。但是我不太明白为什么会有一个单
我需要在 SQL Server 的 sql 查询中转义 [ select * from sometable where name like '[something]'; 我实际上正在寻找某个东西之前的
我的要求是这样的: 我在数据库和时区中保存以毫秒为单位的时间。例如,以毫秒为单位的时间是 1223123123232长时区是 Asia/Calcutta 。我必须将其转换为 Africa/Asmara
我的表中有两个整数列,其中第一列填充了一些随机数,第二列为空。现在是否可以将第一列按升序排序,同时按降序排序并显示为第二列?我有下表的示例。 初始表: col1 col2 5 7 3 9
我正在使用 Instruments 检查我的应用程序的内存泄漏并向我展示: NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ChangeAcc
我有课 class Person { // some other fields for this object std::vector relatives; } 然后是一个返回 Person
在下面的代码中,为什么需要 .page-wrap:after? 理论上,如果没有这个,粘性页脚不应该工作吗?为什么不呢? * { margin: 0; } html, body { heigh
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
我看过维基百科的图数据库,还是不明白。 什么是“无索引邻接”? 可不可以理解为“不是把主键存到其他表的行,而是直接存这些行的物理位置” 最佳答案 当您的数据可以表示为图形( map 上的路线、一些树等
我是 AngularJS 的新手,但我真的很喜欢 AngularJS 的工作方式,所以我想将它部署为我的 Google 云端点后端的客户端。然后我立即遇到两个问题: 1、放在哪里myCallback
我是一名优秀的程序员,十分优秀!