- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 React Native 项目有问题。当我尝试构建项目时(在 android、windows 10、android 模拟器中),我遇到了关于 play-service-base 的编译时版本和运行时版本之间的冲突的错误。
我正在使用:
"react": "16.3.1"
"react-native": "0.55.3"
"react-native-firebase": "^4.3.8"
android/build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven {
url 'https://maven.fabric.io/public'
}
maven {
url 'https://google.bintray.com/exoplayer/'
}
google()
mavenLocal()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.google.gms:google-services:4.0.1'
classpath 'io.fabric.tools:gradle:1.25.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
maven {
url 'https://jitpack.io'
}
maven {
url 'https://google.bintray.com/exoplayer/'
}
maven {
url 'https://maven.google.com'
}
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
jcenter()
configurations.all {
resolutionStrategy.force 'com.google.android.gms:play-services-base:17.0.0'
}
}
}
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.google.android.gms'
&& (details.requested.name.contains('play-services-core')
|| details.requested.name.contains('play-services-tasks')
|| details.requested.name.contains('play-services-basement')
|| details.requested.name.contains('play-services-stats'))) {
details.useVersion "17.0.0"
}
}
afterEvaluate {project ->
if (project.name.contains('react-native-fetch-blob') ||
project.name.contains('react-native-image-picker') ||
project.name.contains('react-native-vector-icons')) {
buildscript {
repositories {
maven { url "https://dl.bintray.com/android/android-tools/" }
}
}
}
}
}
}
android/app/build.gradle
apply plugin: "com.android.application"
apply plugin: 'io.fabric'
import com.android.build.OutputFile
project.ext.react = [
entryFile: "index.js"
]
apply from: "../../node_modules/react-native/react.gradle"
/**
* Set this to true to create two separate APKs instead of one:
* - An APK that only works on ARM devices
* - An APK that only works on x86 devices
* The advantage is the size of the APK is reduced by about 4MB.
* Upload all the APKs to the Play Store and people will download
* the correct one based on the CPU architecture of their device.
*/
def enableSeparateBuildPerCPUArchitecture = false
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
def enableProguardInReleaseBuilds = true
def Properties localproperties = new Properties()
localproperties.load(project.rootProject.file("local.properties").newDataInputStream())
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "ir.brogrammers.tamin"
minSdkVersion 17
targetSdkVersion 26
versionCode 32
versionName "1.0.8"
ndk {
abiFilters "armeabi-v7a", "x86"
}
multiDexEnabled true
}
signingConfigs {
release {
if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) {
storeFile file(MYAPP_RELEASE_STORE_FILE)
storePassword MYAPP_RELEASE_STORE_PASSWORD
keyAlias MYAPP_RELEASE_KEY_ALIAS
keyPassword MYAPP_RELEASE_KEY_PASSWORD
}
}
}
/* signingConfigs {
release {
if (localproperties.getProperty('MYAPP_RELEASE_STORE_FILE', null)) {
storeFile file(localproperties['MYAPP_RELEASE_STORE_FILE'])
storePassword localproperties['MYAPP_RELEASE_STORE_PASSWORD']
keyAlias localproperties['MYAPP_RELEASE_KEY_ALIAS']
keyPassword localproperties['MYAPP_RELEASE_KEY_PASSWORD']
}
}
} */
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86"
}
}
buildTypes {
release {
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
signingConfig signingConfigs.release
ext.enableCrashlytics = true
}
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
def versionCodes = ["armeabi-v7a":1, "x86":2]
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
}
}
}
}
dependencies {
implementation project(':react-native-firebase')
// Firebase dependencies
implementation "com.google.android.gms:play-services-base:17.0.0"
implementation "com.google.firebase:firebase-core:17.0.0"
implementation "com.google.firebase:firebase-messaging:19.0.0"
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "com.android.support:appcompat-v7:27.1.0"
implementation("com.facebook.react:react-native:0.55.3") { force = true }
implementation project(':react-native-document-picker')
implementation project(':react-native-image-picker')
implementation project(':react-native-fs')
implementation project(':react-native-device-info')
implementation project(':react-native-vector-icons')
implementation project(':react-native-video')
implementation project(':react-native-file-viewer')
implementation project(':react-native-splash-screen')
implementation 'com.facebook.fresco:animated-base-support:1.3.0'
implementation 'com.facebook.fresco:animated-gif:1.3.0'
implementation 'com.facebook.fresco:fresco:1.3.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.+'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.1'
implementation project(':react-native-fetch-blob')
implementation project(':react-native-account-manager')
compile project(':react-native-shortcut-badge')
compile project(':react-native-wheel-picker-android')
implementation 'com.android.support:multidex:1.0.3'
implementation project(':react-native-i18n')
// configurations.all {
// resolutionStrategy {
// force 'com.google.android.gms:play-services-gcm:17.0.0'
// force 'com.google.android.gms:play-services-base:17.0.0'
// force 'com.google.firebase:firebase-core:17.0.0'
// force 'com.google.firebase:firebase-messaging:19.0.0'
// }
// }
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
into 'libs'
}
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
apply plugin: 'com.google.gms.google-services'
com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true
当我想用 react-native run-android 构建项目时,它失败并出现此错误
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:preDebugBuild'.
> Android dependency 'com.google.android.gms:play-services-base' has different version for the compile (16.0.1) and runtime (17.0.0) classpath. You should manually set the same version via DependencyResolution
我尝试将 play-services-base 版本更改为 17.0.0 并强制它使用版本 17.0.0
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.google.android.gms'
&& (details.requested.name.contains('play-services-core')
|| details.requested.name.contains('play-services-tasks')
|| details.requested.name.contains('play-services-basement')
|| details.requested.name.contains('play-services-stats'))) {
details.useVersion "17.0.0"
}
}
最佳答案
这条评论 github提供您问题的答案
依赖项(在本例中为 react-native-device-info)正在使用其依赖项之一的最新版本,而不是固定/固定版本。昨天发布新版本的 google services 时,它导致构建为设备信息引入新版本,从而导致与正确固定所需版本的其他依赖项发生冲突。
implementation(project(":react-native-device-info"), {
exclude group: "com.google.android.gms"
})
实现“com.google.android.gms:play-services-gcm:16.0.0”并可能将 react-native-device-info 替换为可能有相同问题的任何其他依赖项(它们将包含一行类似 implementation "com.google.android.gms:play-services-gcm:+"的行,这取决于任何内容最新版本的谷歌 gcm)。
关于android - com.google.android.gms :play-services-base compile and runtime collision in react native,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57063945/
这里的这个问题对 updating Google Sheets charts linked to Google slides 有一个简洁的解决方案. function onOpen() { var
我正在尝试将 Google 表单添加到 Google 类作业中,但似乎不可能。 首先,它在这里 ( https://developers.google.com/classroom/reference/
出于某种原因,无论我做什么以及我如何尝试,这个日期格式化程序都不起作用。工具提示仍然显示错误的格式。你可以试试代码here . 在代码中我必须注释掉 formatter.format(dataTabl
我目前正在使用访问 token 和刷新 token 从 Google Analytics Reporting API (v4) 中提取数据。当我致力于自动从 Google Analytics 中提取数
我已在 Google 云端硬盘中创建了一个文件夹,例如测试一下,放入3个文件 a.jpg, b.jpg, c.jpg 我希望在同一帐户下的 Google 电子表格中访问文件,例如生成图像文件的链接,可
电子表格 A 是欢迎新移民来到我们小镇的团队的主数据源。它里面有大量非常敏感的数据,不能公开,哪怕是一点点。 (我们谈论的是 child 的姓名和出生日期以及他们在哪里上学……保证电子表格 A 的安全
有没有办法在 Google 文档中编写 Google Apps 脚本以从 Google 表格中检索仅限于非空白行的范围并将这些行显示为表格? 我正在寻找一个脚本,用于使用 Google Apps 脚本
有没有办法在 Google 文档中编写 Google Apps 脚本以从 Google 表格中检索仅限于非空白行的范围并将这些行显示为表格? 我正在寻找一个脚本,用于使用 Google Apps 脚本
尝试检索存储在 google firebase 中名为条目的节点下的表单条目,并使用谷歌工作表中的脚本编辑器附加到谷歌工作表。 我已将 FirebaseApp 库添加到谷歌表脚本编辑器。然后我的代码看
是否可以将我的 Web 应用程序的登录限制为仅限 google 组中的帐户? 我不希望每个人都可以使用他们的私有(private) gmail 登录,而只能使用我的 google 组中的用户。 最佳答
我们想使用 Google 自定义搜索实现 Google 附加链接搜索框。在谷歌 documentation , 我发现我们需要包含以下代码来启用附加链接搜索框 { "@context"
我想将特定搜索词的 Google 趋势图表添加到我的 Google Data Studio 报告中,但趋势不是数据源列表中的选项。我也找不到嵌入 JavaScript 的选项。是否可以将趋势图表添加到
是否可以将文件从 Google Drive 复制到 Google Cloud Storage?我想它会非常快,因为两者都在类似的存储系统上。 我还没有看到有关无缝执行此操作的任何方法的任何信息,而无需
之间有什么区别 ga('send', 'pageview', { 'dimension1': 'data goes here' }); 和 ga('set', 'dimension1', 'da
我正在尝试记录每个博客站点作者的点击率。 ga('send', 'pageview'); (in the header with the ga code to track each page) ga(
我设置了 Google Tag Manager 和 2 个数据层变量:一个用于跟踪用户 ID,传递给 Google Analytics 以同步用户 session ,另一个用于跟踪访问者类型。 在使用
我在我们的网站上遇到多个职位发布的问题。 我们在加拿大多个地点提供工作机会。所有职位页面都包含一个“LD+JSON ”职位发布的结构化数据,基于 Google 的职位发布文档: https://dev
公司未使用 Google 套件,使用个人(消费者)帐户(甚至是 Google 帐户)违反公司政策。 需要访问 Google Analytics - 没有 Google 帐户是否可能? 谢谢 最佳答案
我想分析人们使用哪些搜索关键字在 Play 商店中找到我的应用。 那可能吗?我怎么能这样做? 最佳答案 自 2013 年 10 月起,您可以关联您的 Google Analytics(分析)和 Goo
Google Now 和 Google Keep 中基于时间和位置的提醒与 Google Calendar 事件提醒不同。是否有公共(public) API 可以访问 Now 和 Keep 中的这些事
我是一名优秀的程序员,十分优秀!