我正在尝试将this库用于我的应用程序,但因为它是在kotlin中制作的,我正面临着这个问题。我下载了这个库的模块并在项目中导入了这个模块但是在初始状态下我找不到gettin kotlin插件所以我把等级改为this
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
minSdkVersion 17
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
resourcePrefix "yal_ms_"
}
buidscript {
ext.kotlin_version = '1.0.1-2'
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.1-2'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile "com.android.support:appcompat-v7:26.1.0"
compile "com.android.support:recyclerview-v7:26.1.0"
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
repositories {
mavenCentral()
jcenter()
}
我第一次尝试使用kotlin库,我不知道kotlin的任何内容,任何建议如何使用这个库都会有所帮助。
答案 0 :(得分:2)
尝试通过gradle导入this库
将maven { url "https://jitpack.io" }
添加到项目gradle的存储库中。所以就像这样
<强>的build.gradle(项目)强>
buildscript {
ext.kotlin_version = '1.1.60'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
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()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
并将compile 'com.github.yalantis:multi-selection:v0.1'
添加到 build.gradle(app)中的依赖项
这可能会在构建项目时创建清单合并冲突错误,以便在清单中的<application>
标记下添加工具:replace =“android:label”