我想在Android Studio 3.0.1中构建我的第一个Kotlin项目。但我得到了以下2个错误:
1.只有Kotlin标准库才允许使用'kotlin'包。
1.错误:执行任务“:app:compileDebugKotlin”失败。
如何使用或添加Kotlin标准库?
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="kotlin.amirreza.mykotlinproject">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Gradler:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 26
defaultConfig {
applicationId "kotlin.amirreza.mykotlinproject"
minSdkVersion 16
targetSdkVersion 26
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:26.0.0-beta1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:0.5'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
}
4条答案
按热度按时间f45qwnt81#
将软件包名称设置为
kotlin
。将
.kt
文件中的所有package kotlin
语句更改为类似package mykotlintest
的内容fykwrbwg2#
可以通过在调用kotlinc时添加
-Xallow-kotlin-package
参数来解决这个问题,这是Kotlin构建自身所做的。idv4meu83#
正如错误所说:
仅允许Kotlin标准库使用'kotlin'包
您不能使用'Kotlin'作为软件包名称,并且您的软件包(applicationId)为:
因此,您必须通过重命名或使用其他包名称创建新应用程序来将其更改为其他名称
就像这样
2skhul334#
正如@EmmanuelBourg正确提到的那样,下面有一些代码可以实现这一点