- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要降级我的 minsdk 以保持与某些设备的兼容性,所以我需要将我的版本从 minsdk16 -> 15 降级。但是我有这个错误:
Manifest merger failed : uses-sdk:minSdkVersion 15 cannot be smaller than version 16 declared in library [com.github.flipagram:android-assetcopier:0.1.1] C:\Users\beto_.gradle\caches\transforms-1\files-1.1\android-assetcopier-0.1.1.aar\7ee049aa00fd85016b1a1ae60ce050df\AndroidManifest.xml as the library might be using APIs not available in 15 Suggestion: use a compatible library with a minSdk of at most 15, or increase this project's minSdk version to at least 16, or use tools:overrideLibrary="flipagram.assetcopylib" to force usage (may lead to runtime failures)
这是我当前的 build.grandle,但是当我将 minsdk 更改为 16 时,出现之前显示的错误。
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "my.package.id"
minSdkVersion 15
targetSdkVersion 28
versionCode 510
versionName "5.1.0"
manifestPlaceholders = [manifestApplicationId : "${applicationId}",
onesignal_app_id : "myonesingeid",
onesignal_google_project_number: "myprojectnumber"]
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'go.swlib.gojni:swlib:1.0@aar'
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.onesignal:OneSignal:3.+@aar'
implementation 'com.google.android.gms:play-services-gcm:16.0.0'
implementation "com.google.android.gms:play-services-location:16.0.0"
implementation 'com.google.android.gms:play-services-ads:17.1.2'
implementation 'com.github.quentin7b:android-location-tracker:3.2'
implementation 'com.google.firebase:firebase-core:16.0.6'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
// implementation 'com.google.firebase:firebase-ads:17.1.2'
implementation 'com.google.firebase:firebase-crash:16.2.1'
implementation 'org.jetbrains:annotations-java5:15.0'
implementation 'com.github.hotchemi:android-rate:1.0.1'
implementation 'com.github.flipagram:android-assetcopier:0.1.1'
}
apply plugin: 'com.google.gms.google-services'
如果我理解得很好,我的错误就在于这个依赖:
implementation 'com.github.flipagram:android-assetcopier:0.1.1'
希望对您有所帮助!谢谢!
最佳答案
使用最新版本的 Firebase 库所需的最低 SDK 级别是 16。没有解决方法,只能备份到这些库的更旧版本。
在documentation它指出:
Prerequisites
A device running:
- Android 4.1 (API level 16, Jelly Bean) or later
- Google Play services 15.0.0 or later
关于安卓,火力地堡 : minSdkVersion 15 cannot be smaller than version 16,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55030849/
在 Zurb Foundation 4 中,有没有办法在浏览器变小或屏幕变小时自动切换到较小的按钮样式? 例如,当屏幕是标准桌面屏幕时,执行此操作: Button 1 当屏幕尺寸变小时,执行此操作:
我需要根据列值计算与特定行不同的行数,同时避免循环解决方案。 示例:以一个包含四行的data.table对象A为例,每行代表一个人。每个人都有 3 个值 v1, v2, v3。目标是计算,对于特定的个
在 OCaml 表单教程的解决方案中 here ,关于消除连续重复的列表元素,代码是这样写的: let rec compress = function | a :: (b :: _ as t)
我正在尝试使用 Rmarkdown 进行非常简单的演示,不涉及任何 block 。我想要相当多的文字,所以没有打印出来,因为它们是不受限制的。 难道没有一个选项可以让 beamer 设置文本的大小以使
我有一个由 Date 分隔的数据列表, Team和他们的Category Score . Category Score每个 Team 的更改每天并根据他们当天的实际得分,我需要确定 Category
我想使用 dplyr 删除较小的组。例如,数据框: ID group value 1 1 6 2 1 2 3 2 0 4 2 5 5 2
我想做一个小书签,从某个网站获取一些信息。 在使用 $('#div').text(); 并避开 div 内的 html 元素后,我得到以下字符串: TOP-GOST
例如:a不小于b 这个怎么写? 最佳答案 if ($a >= $b) if !($a < $b) 关于php - 在 PHP 中我该如何写 : IS NOT SMALLER THAN,我们在Stack
我需要将科学信息存储在数据库 (sql server) 中。在“小于”、“大于”是信息的一部分的数据库中存储值的最佳方式是什么。 例子: 患者编号:123变异率:<3% 患者编号:999突变率:3%
如果窗口大小低于 500 像素,我想加载一个不同的 css 文件。我有 但是 main.css 总是覆盖 mobile.css,尽管窗口小于 500px。怎么了? 编辑:我改成了 但是当我将窗
我希望从一个独特的提交中制作一个交互式补丁。我想使用类似于 的输出 git diff --word-diff=porcelain [file] 用于交互式修补。命令 git add --edit 只推
Using Playwright and Python, how can I expect for count bigger or smaller than?使用Playwright和Pytho
Using Playwright and Python, how can I expect for count bigger or smaller than?使用Playwright和Pytho
我想写一些类似的东西: {-# LANGUAGE FlexibleContexts,FlexibleInstances #-} import Data.ByteString.Char8 (ByteSt
R 的 duplicated 返回一个向量,显示向量或数据帧的每个元素是否是具有较小下标的元素的重复项。因此,如果 5 行数据帧的第 3、4 和 5 行相同,则 duplicated 将为我提供向量
我用 chart.js 创建了一个折线图。我使用以下方法将图例符号形式从矩形更改为圆形: legend: { display: true, labels: { usePointStyl
我在 Plotly(针对 R)中制作了一个气泡图,但我不断得到重叠的标记。有没有办法“缩小”所有标记,以便保留它们的相对大小但没有重叠?我想保持绘图的尺寸相同。这是一个测试用例: test ", "D
我们正在开发一款安卓应用。文本在 5"设备上正确显示。但在较小的设备(4"、3.5")上被裁剪。为什么会这样?欢迎任何帮助。请参阅下面的屏幕截图。显示的是“Credit”、“Debit”和“Net”,
我有一个大型主表 TableA,包含 1200 万条记录。其核心是: 表A:|--FieldA--|--FieldP--|--FieldS--|--FieldH--|--ValueField--|--
我得到了这段代码: $userquery = mysqli_query($con, "SELECT *, ( 3959 * acos( cos( radians
我是一名优秀的程序员,十分优秀!