gpt4 book ai didi

android - 错误 : "Only the Kotlin standard library is allowed to use the ' kotlin' package"

转载 作者:太空宇宙 更新时间:2023-11-03 11:46:33 31 4
gpt4 key购买 nike

我想在 Android studio 3.0.1 中构建我的第一个 kotlin 项目。但我遇到了这两个错误:

  1. 只允许 Kotlin 标准库使用“kotlin”包。

  2. 错误:任务“:app:compileDebugKotlin”执行失败。

如何使用或添加 Kotlin 标准库?

list :

<?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>

渐变:

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'
}

最佳答案

您将包名称设置为 kotlin

.kt 文件中的所有 package kotlin 语句更改为类似 package mykotlintest 的内容>

关于android - 错误 : "Only the Kotlin standard library is allowed to use the ' kotlin' package",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51550066/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com