- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 Gradle 版本 6.6.1、Android Gradle 插件 4.2.0-alpha10 和 Kotlin 1.4.0 的 Android 项目。
然后我注意到 kotlin 标准库中缺少一些函数和类。
这是 Kotlin 库:
这是 kotlin-stdlib 实现:
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
有谁知道这个问题并知道如何解决这个问题?
buildscript {
ext.kotlin_version = "1.4.0"
repositories {
google()
jcenter()
maven { url = "https://dl.bintray.com/kotlin/kotlin-eap/" }
maven { url "https://maven.google.com/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.0-alpha10'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.0"
classpath 'com.google.gms:google-services:4.3.3'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.2.1'
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.28-alpha'
//classpath 'com.google.firebase:perf-plugin:1.3.1'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://maven.google.com/" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
=====
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-kapt'
id 'kotlin-allopen'
id 'kotlin-android-extensions'
id 'androidx.navigation.safeargs.kotlin'
id 'com.google.gms.google-services'
id 'com.google.firebase.crashlytics'
id 'dagger.hilt.android.plugin'
//id 'com.google.firebase.firebase-perf'
}
allOpen {
annotation 'XXXXXX'
}
android {
compileSdkVersion 30
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "XXXXXX"
minSdkVersion 27
targetSdkVersion 30
versionCode 1
versionName "2.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
arguments += [
"room.schemaLocation": "$projectDir/schemas".toString(),
"room.incremental": "true",
"room.expandProjection": "true"
]
}
}
multiDexEnabled false
}
signingConfigs {
prod {
keyAlias 'SM'
keyPassword KEY_PASSWORD
storeFile file('XXXXXXX')
storePassword KEY_PASSWORD
}
dev {
keyAlias 'SM'
keyPassword KEY_PASSWORD
storeFile file('XXXXXXX')
storePassword KEY_PASSWORD
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs += '-Xopt-in=kotlin.RequiresOptIn'
}
buildTypes {
release {
debuggable true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled false
}
}
flavorDimensions "version"
productFlavors {
prod {
dimension "version"
signingConfig signingConfigs.prod
}
dev {
dimension "version"
applicationIdSuffix ".dev"
versionNameSuffix "-dev"
signingConfig signingConfigs.dev
proguardFile 'proguard-rules-dev.pro'
}
}
variantFilter { variant ->
def names = variant.flavors*.name
if (names.contains("prod") && variant.buildType.name == "debug") {
variant.ignore = true
}
}
buildFeatures {
dataBinding = true
viewBinding = true
}
packagingOptions {
exclude 'META-INF/atomicfu.kotlin_module'
}
dexOptions {
preDexLibraries true
javaMaxHeapSize "4g"
}
androidExtensions {
experimental = true
}
}
dependencies {
implementation project(':cache')
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.5"
// MIKEPENZ
implementation 'com.mikepenz:materialdrawer:8.0.3'
implementation "com.mikepenz:materialdrawer-nav:8.0.3"
implementation "com.mikepenz:materialdrawer-iconics:8.0.3"
implementation 'com.mikepenz:itemanimators:1.1.0'
implementation 'com.mikepenz:iconics-core:5.0.3'
implementation "com.mikepenz:iconics-views:5.0.3"
implementation 'com.mikepenz:fontawesome-typeface:5.9.0.0-kotlin@aar'
implementation "com.mikepenz:fastadapter:5.2.2"
implementation "com.mikepenz:fastadapter-extensions-binding:5.2.2"
implementation "com.mikepenz:fastadapter-extensions-diff:5.2.2"
implementation "com.mikepenz:fastadapter-extensions-scroll:5.2.2"
implementation "com.mikepenz:fastadapter-extensions-ui:5.2.2"
implementation "com.mikepenz:fastadapter-extensions-utils:5.2.2"
// mikepenz
implementation 'com.timehop.stickyheadersrecyclerview:library:0.4.3@aar'
// ANDROIDX
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation "androidx.recyclerview:recyclerview:1.1.0"
kapt "androidx.annotation:annotation:1.1.0"
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
implementation 'androidx.viewpager2:viewpager2:1.0.0'
implementation "androidx.navigation:navigation-fragment-ktx:2.3.0"
implementation "androidx.navigation:navigation-ui-ktx:2.3.0"
implementation "androidx.preference:preference-ktx:1.1.1"
implementation "androidx.work:work-runtime-ktx:2.4.0"
implementation "androidx.work:work-rxjava2:2.4.0"
// androidx
// GOOGLE
implementation "com.google.android.material:material:1.3.0-alpha02"
implementation 'com.google.android:flexbox:2.0.0'
//implementation 'com.google.android.gms:play-services-auth:18.1.0'
// google
// ROOM
implementation "androidx.room:room-runtime:2.2.5"
implementation "androidx.room:room-ktx:2.2.5"
implementation "androidx.room:room-rxjava2:2.2.5"
kapt "androidx.room:room-compiler:2.2.5"
androidTestImplementation "androidx.room:room-testing:2.2.5"
// room
implementation "io.reactivex.rxjava2:rxjava:2.2.19"
implementation "io.reactivex.rxjava2:rxandroid:2.1.1"
implementation 'me.dm7.barcodescanner:zxing:1.9.13'
implementation 'com.karumi:dexter:6.2.1'
implementation 'com.google.code.gson:gson:2.8.6'
// LIFECYCLE
implementation "androidx.lifecycle:lifecycle-common-java8:2.2.0"
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.2.0"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"
implementation "androidx.lifecycle:lifecycle-reactivestreams-ktx:2.2.0"
androidTestImplementation "androidx.arch.core:core-testing:2.1.0"
// lifecycle
// DAGGER
/*
implementation 'com.google.dagger:dagger:2.28.3'
kapt 'com.google.dagger:dagger-compiler:2.28.3'
implementation 'com.google.dagger:dagger-android:2.25.2'
implementation 'com.google.dagger:dagger-android-support:2.25.2'
kapt 'com.google.dagger:dagger-android-processor:2.25.2'
*/
implementation 'com.google.dagger:hilt-android:2.28.3-alpha'
kapt 'com.google.dagger:hilt-android-compiler:2.28.3-alpha'
implementation 'androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha02'
implementation 'androidx.hilt:hilt-work:1.0.0-alpha02'
kapt 'androidx.hilt:hilt-compiler:1.0.0-alpha02'
// dagger
implementation "com.airbnb.android:lottie:3.4.2"
implementation 'com.jakewharton.timber:timber:4.7.1'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-moshi:2.9.0'
implementation 'com.squareup.moshi:moshi-kotlin:1.10.0'
implementation 'com.squareup.moshi:moshi-adapters:1.10.0'
implementation "com.squareup.okhttp3:logging-interceptor:4.8.1"
kapt 'com.squareup.moshi:moshi-kotlin-codegen:1.10.0'
testImplementation "com.squareup.okhttp3:mockwebserver:4.8.1"
implementation 'me.dm7.barcodescanner:zxing:1.9.13'
implementation "androidx.fragment:fragment-ktx:1.2.5"
implementation "io.noties.markwon:core:4.5.1"
implementation 'commons-net:commons-net:20030805.205232'
implementation 'commons-codec:commons-codec:1.6'
implementation 'id.zelory:compressor:3.0.0'
implementation 'com.github.ongakuer.circleindicator:LoopingViewPager:2.1.4'
implementation 'me.relex:circleindicator:2.1.4'
implementation 'me.zhanghai.android.materialprogressbar:library:1.6.1'
implementation 'com.github.stfalcon:stfalcon-imageviewer:1.0.1'
implementation 'com.github.bumptech.glide:glide:4.11.0'
kapt 'com.github.bumptech.glide:compiler:4.11.0'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.google.firebase:firebase-analytics-ktx:17.5.0'
implementation 'com.google.firebase:firebase-crashlytics:17.2.1'
implementation('com.google.firebase:firebase-ml-vision:24.1.0') {
exclude group: 'com.google.android.gms', module: 'play-services-vision'
}
implementation ('com.google.firebase:firebase-ml-vision-barcode-model:16.1.2') {
exclude group: 'com.google.android.gms', module: 'play-services-vision'
}
//implementation 'com.google.firebase:firebase-ml-vision-object-detection-model:19.0.5'
//implementation 'com.google.firebase:firebase-perf:19.0.8'
implementation 'com.google.firebase:firebase-config-ktx:19.2.0'
implementation 'com.google.firebase:firebase-messaging:20.2.4'
//debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.1'
debugImplementation "com.github.chuckerteam.chucker:library:3.2.0"
releaseImplementation "com.github.chuckerteam.chucker:library-no-op:3.2.0"
testImplementation 'junit:junit:4.13'
testImplementation 'androidx.test:core-ktx:1.3.0'
testImplementation 'org.mockito:mockito-core:3.3.3'
testImplementation 'org.mockito:mockito-inline:2.13.0'
testImplementation 'com.google.dagger:hilt-android-testing:2.28.3'
kaptTest 'com.google.dagger:hilt-android-compiler:2.28.3'
androidTestImplementation 'org.mockito:mockito-android:2.19.0'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test:rules:1.3.0'
androidTestImplementation 'org.hamcrest:hamcrest-library:2.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'androidx.test.ext:junit-ktx:1.1.2'
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
androidTestImplementation 'com.google.dagger:hilt-android-testing:2.28.3'
kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.28.3'
}
最佳答案
Kotlin 插件 1.4.0 不支持 Android Studio 4.2。对于 AS 4.2,请使用插件的 1.4.10 版本。
您可以尝试这两个选项来安装它。
关于Android Gradle 下载库不完整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63810644/
具体详细介绍请看下文: 在使用文件进行交互数据的应用来说,使用FTP服务器是一个很好的选择。本文使用Apache Jakarta Commons Net(commons-net-3.3.jar)
我在日志文件中收到这些警告: WARN 2013-01-15 00:08:15,550 org.eclipse.jetty.http.HttpParser- HttpParser Full for
我在使用特定网页时遇到问题。当我按下链接时,我收到应用程序错误(不是 http 错误等,而是应用程序级别错误)。 但是我打开了开发人员工具和网络控制台,我看到没有请求发送到服务器。 所以我双击并选择查
我没有组装经验,但这是我一直在做的。如果在通过程序集中的指针传递参数和调用函数时缺少任何基本方面,我希望输入。 例如,我想知道是否应该还原ecx,edx,esi,edi,。我读到它们是通用寄存器,但我
我没有组装经验,但这是我一直在做的。如果在通过程序集中的指针传递参数和调用函数时缺少任何基本方面,我希望输入。 例如,我想知道是否应该还原ecx,edx,esi,edi,。我读到它们是通用寄存器,但我
我正在尝试创建完整 uiscrollview 的快照,所有内容大小,我已经搜索了很多,并且我在 SO 上找到了一些东西,如下所示: Getting a screenshot of a UIScroll
我想复制一个包含以下结构的Vector,对我来说重要的是在修改复制的 vector 时保持原始Vector完整: public class objet_poid_n { public int
给定一个示例字符串 s = '嗨,我的名字是 Humpty-Dumpty,来自“爱丽丝,爱丽丝镜中奇遇记”',我想将其分成以下 block : # To Do: something like {l =
已关闭。此问题旨在寻求有关书籍、工具、软件库等的建议。不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以
我正在尝试创建一个正则表达式来查找文本中的 Linux 文件路径,但是正则表达式对我来说非常陌生。我有下面的代码片段,它将识别下面文件结构的开头。 .*(/bin/|/home/).* 完成正则表达式
我正在寻找远程托管的 JPG 的尺寸、宽度和高度。我已经了解了如何通过下载完整图像来执行此操作。 但是,如果我可以通过仅下载足以获取此信息的方式来做到这一点,那将是理想的。 典型的图像大小为 200K
有没有办法让下面的代码: import traceback def log(message): print "%s: %s" %(traceback.extract_stack()[0:-1]
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 3 年前。 Improve this qu
git show 显示了修订版中所做的所有更改。但是,它会打印出所有更改——而不仅仅是文件名。 git show --stat 只显示文件名,但它把它们截断了!有没有办法获得已更改文件名的完整列表?
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想要改善这个问题吗?更新问题,以便将其作为on-topi
当我在模板中调用我的模型 get_absolute_url 方法时,我想要一个绝对/完整的 url。在我的入门模型中,我有以下内容: def get_absolute_url(self): r
我正在使用 jQuery 1.5.1 这是我的代码: $('.cellcontent').animate({ left: '-=190'}, { easing: alert('start
我正在使用下面的方法删除条形图并使用新数据更新条形图,但这样做时出现了一个小故障/完整的图表消失 1 秒,直到加载新数据。但是是否可以通过仅增加/减少柱形而不实际消失图表来实现相同的目的。 d3.se
基于 this question 中的讨论,任何人都可以提供代码或代码链接,显示 NumericLiteralX 模块的完整实现(例如 this one )?我对 NumericLiteralX 模块
我的目标是检索网站的 html,并将其转换为可读的String。我下面的代码可以工作,但我遇到了一个技术问题:当我尝试检索 http://time.gov/HTML5 的 html 时,我在 andr
我是一名优秀的程序员,十分优秀!