- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究 firebase-ml。
早些时候,我使用的是它的 16 版本,它在我的项目中运行良好。但是经过一些需求,我需要升级到21.0.0,然后我就面临着
Error: Attribute application@appComponentFactory value=(androidx.core.app.CoreComponentFactory) from [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 is also present at [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91 value=(android.support.v4.app.CoreComponentFactory). Suggestion: add 'tools:replace="android:appComponentFactory"' to element at AndroidManifest.xml:86:5-430:19 to override.
这是我正在使用的依赖项
implementation 'com.google.firebase:firebase-ml-vision:21.0.0'
有人解决过这个问题吗?
额外的
import java.text.SimpleDateFormat
buildscript {
repositories {
google()
maven { url 'https://plugins.gradle.org/m2/'}
}
dependencies {
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.12.1'
}
}
apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'
repositories {
maven { url 'https://maven.google.com' }
}
buildscript {
repositories {
google()
maven { url 'https://maven.fabric.io/public' }
jcenter()
}
dependencies {
// These docs use an open ended version so that our plugin
// can be updated quickly in response to Android tooling updates
classpath 'com.android.tools.build:gradle:3.4.1'
// We recommend changing it to the latest version from our changelog:
// https://docs.fabric.io/android/changelog.html#fabric-gradle-plugin
classpath 'io.fabric.tools:gradle:1.+'
}
}
repositories {
google()
//maven { url 'https://maven.google.com' }
jcenter()
mavenCentral()
}
apply plugin: 'com.android.application'
apply plugin: 'com.google.firebase.firebase-perf'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
repositories {
maven { url 'https://dl.bintray.com/intercom/intercom-maven' }
}
android {
lintOptions {
abortOnError false
}
dexOptions {
jumboMode = true
}
signingConfigs {
config {
keyAlias 'evalexpert_android_key'
keyPassword 'algo_driven_eval_expert'
storeFile file('/Users/nadkyxa/Code/EvalExpert/eval_expert.jks')
storePassword 'algo_driven_eval_expert'
}
}
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
applicationId 'xyz.AlgoDriven.EvalExpert'
minSdkVersion 18
targetSdkVersion 28
versionCode 86
versionName "8.0.4"
multiDexEnabled true //important
manifestPlaceholders = [onesignal_app_id: "aa111770-4417-4674-b657-c91e40a3ff25",
// Project number pulled from dashboard, local value is ignored.
onesignal_google_project_number: "REMOTE"]
externalNativeBuild {
ndkBuild {
targets "ocrnative"
abiFilters "armeabi-v7a"
}
}
}
useLibrary 'org.apache.http.legacy'
externalNativeBuild {
ndkBuild {
path "src/main/jni/Android.mk"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
debug {
externalNativeBuild {
ndkBuild {
arguments "NDK_DEBUG:=1"
}
}
}
}
productFlavors {
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/notice.txt'
exclude 'META-INF/ASL2.0'
exclude 'META-INF/ECLIPSE_.SF'
exclude 'META-INF/ECLIPSE_.RSA'
}
configurations.all {
resolutionStrategy {
force 'androidx.media:media:1.0.0'
}
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://s3.amazonaws.com/repo.commonsware.com" }
// maven { url 'https://dl.bintray.com/intercom/intercom-maven' }
maven { url 'https://maven.fabric.io/public' }
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
dependencies {
def suppLibVersion = '28.0.0'
androidTestImplementation 'androidx.test:runner:1.3.0-alpha01'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha01'
implementation('com.crashlytics.sdk.android:crashlytics:2.9.6@aar') {
transitive = true;
}
implementation('com.crashlytics.sdk.android:answers:1.3.7@aar') {
transitive = true;
}
implementation project(':UrlImageViewHelper')
implementation project(':TwoWayGridView')
implementation project(':SlidingMenu')
implementation project(':Branch-Invite-SDK')
implementation('com.google.android.gms:play-services-base:17.0.0') {
force = true;
}
implementation('com.google.android.gms:play-services-maps:17.0.0') {
force = true;
}
// Firebase
implementation 'com.google.firebase:firebase-core:17.0.0'
implementation 'com.google.firebase:firebase-perf:18.0.1'
implementation 'com.google.firebase:firebase-database:18.0.0'
implementation 'com.google.firebase:firebase-auth:18.0.0'
implementation 'com.google.firebase:firebase-messaging:19.0.1'
implementation 'com.google.firebase:firebase-ml-vision:21.0.0'
// OneSignal & Push Notify
implementation('com.onesignal:OneSignal:3.10.8') {
exclude group: 'com.google.android.gms'
}
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
// Intercom
implementation 'io.intercom.android:intercom-sdk-base:5.+'
implementation 'io.intercom.android:intercom-sdk-fcm:5.+'
implementation 'com.android.support:recyclerview-v7:' + suppLibVersion
implementation 'com.android.support:gridlayout-v7:' + suppLibVersion
implementation 'com.android.support:support-v4:' + suppLibVersion
implementation 'com.android.support:design:' + suppLibVersion
implementation 'uk.co.chrisjenx:calligraphy:2.1.0'
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
implementation 'com.koushikdutta.ion:ion:2.+'
implementation 'com.github.JakeWharton:ViewPagerIndicator:2.4.1'
implementation 'com.github.jaydeepw:poly-picker:v1.0.22'
implementation 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
implementation 'com.daimajia.swipelayout:library:1.2.0@aar'
implementation 'commons-io:commons-io:2.5'
implementation 'com.jsibbold:zoomage:1.1.0'
implementation 'com.wootric:wootric-sdk-android:2.5.2'
testImplementation 'junit:junit:4.13-beta-3'
implementation 'io.branch.sdk.android:library:2.+'
implementation 'com.github.bumptech.glide:glide:3.8.0'
implementation 'info.hoang8f:android-segmented:1.0.6'
implementation 'com.otaliastudios:cameraview:1.6.0'
implementation 'com.github.eventtus:photo-editor-android:v1.0'
implementation 'com.nineoldandroids:library:2.4.0'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.+'
// implementation 'com.applozic.communication.uiwidget:mobicomkitui:5.34'
implementation project(':mobicomkit')
implementation project(':mobicomkitui')
implementation project(':mobicommons')
implementation 'com.google.android.material:material:1.0.0'
}
apply plugin: 'com.google.gms.google-services'
最佳答案
这里的问题是你的项目没有完全迁移到Android X,[com.android.support:support-compat:28.0.0]和androidx.core:core:1.0.0版本有冲突.
将 com.android.support:support 库更新为
implementation "androidx.core:core:1.0.0"
有关更多信息,请参阅本指南:https://developer.android.com/jetpack/androidx/migrate
关于android - 来自 [androidx.core : Attribute application@appComponentFactory value=(androidx. 0.0] 的错误 :core:1. core.app.CoreComponentFactory),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56929491/
我将从 ColdFusion 8 迁移到 ColdFusion 10。 目前,在我的Unix根目录下,我只有1个Application.cfm,在这个根目录下我有大约10个子目录(以前的程序员就是这样
这个问题在这里已经有了答案: Is it possible to write a program in Java without main() using JDK 1.7 or higher? [d
我是编写 Windows 服务应用程序的新手,并且遇到了问题。 我用 Delphi 编写了一个普通的 Windows 应用程序来检查和调试代码的主要部分,现在必须将其转换为 NT 服务。 我的代码必须
我在 Visual Studio 2013 中运行它。 对于 Application.Current.Shutdown 我得到: “Application”是“System.Windows.Appli
给定以下 C++ 代码“mini.cpp”: #include "iostream" using namespace std; int main() { cout << "Hello Worl
什么是“服务器应用程序”?我被要求写一篇关于“服务器应用程序”中的错误的文章,但我不熟悉确切的术语。它们只是网络应用程序,还是其他东西? 最佳答案 “服务器应用程序”是一种应用程序,它等待来自其他应用
JavaFX 应用程序类必须扩展 javafx.application.Application package automationFramework import java.util.concurr
I have implemented deeplinking in my application that open my app (if available) but my app opens
我被困在一个非常基本的问题上。我使用 JavaFX 创建了一个简单的 hello world 程序,它在 JDK 1.8 上运行良好。但是当我切换到 JDK-11 时,它会抛出以下异常: Error:
我可以让Application Insights显示正在运行的每小时使用情况日志,但是有没有一种方法可以每小时显示一次平均使用情况,以查看必须在一天中的哪个时段使用网站? 最佳答案 在您的资源的概览
有谁知道为什么在.NET应用程序中实现Application Insights时不会收集用户代理信息,却能够在浏览器中收集统计信息? 我很希望能够针对特定的用户代理字符串过滤出请求,但是看起来我无法看
我有多个应用程序使用 Application Insights for Production Data。我正在尝试使用 City 遥测字段来映射我们当前的用户。这些数据的跟踪似乎非常不一致,并且在大多
有没有办法在 ASP.NET Web 应用程序中禁用 Application Insights?假设我想关闭生产中运行的应用程序中的所有数据收集。 最佳答案 如果 ikey 在 Application
如何在 Azure Application Insights 中将时差转换为毫秒 let startTime = todatetime('2017-05-15T17:02:23.7148691Z');
我正在修改一个用 Coldfusion 编码的现有 Web 应用程序。在现有代码中,大部分文件夹包含一个 Application.cfm 文件,该文件设置应用程序变量 但是,我对这些应用程序的部分修改
我在 Application Insights Analytics 中有一些数据,它有一个动态对象作为自定义维度的属性。例如: | timestamp | name
首先,我需要的是-n WebBrowser-s,每个都在自己的窗口中执行自己的工作。用户应该能够看到所有这些内容,或者仅看到其中一个(或不显示任何内容),并且能够对每一个执行命令。有一个主要形式,没有
我已收到以下代码以添加到封闭代码(受密码保护)中,以便可以发现错误。 On Error Resume Next: Err.Clear Application.SetOption "Error Trap
我正在使用 Delphi 7。我试图在非 VCL 单元中添加一个调用“application.processmessages”的过程。我收到错误“未声明的标识符:应用程序”。 如何从非 vcl 单元引
考虑一个非外汇现有应用程序,我们将其称为Business。 Business 公开一个 Model 对象,该对象又公开一些属性。 Model 还接受这些属性的监听器。 我的问题是关于向此类应用程序添加
我是一名优秀的程序员,十分优秀!