我正在Kotlin写一个Android应用程序。我正在使用this库。
按照自述文件底部的说明,我添加了以下行:
implementation 'net.dean.kdown:kdown:0.4.0'
在我的"模块:app" build.gradle脚本。
我的" Project"中也有jcenter()
行。 build.gradle脚本
然后我在我的" MainActivity.kt"中添加了import net.dean.kdown.*
。文件。
作为测试,我尝试在onCreate方法中使用该库,如下所示:
val downloader = Kdown();
但是,我收到错误"未解决的参考:Kdown"。此外,IDE正在提供"未使用的导入指令"错误,即使理论上,我应该使用导入来创建"下载器"对象
为什么这不起作用?
这是我项目的build.gradle文件。
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.30'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是我的app模块的build.gradle文件:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.rstudios.vroy1.animefacekeyboard"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'net.dean.kdown:kdown:0.4.0'
}