我在Android应用程序开发方面还很新。
我从Kotlin开始,在配置SDK之后,我开始了一个项目,但我不知道问题是什么。
我希望看到Base theme
上有“ Hello World!”。 TextView
。
如何解决此问题/错误?
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.dell.myapplication"
minSdkVersion 17
targetSdkVersion 28
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-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0-rc02'
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'
}
答案 0 :(得分:0)
将rc
替换为以下内容:
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
然后是Build > Clean code / Rebuild project
答案 1 :(得分:-1)
Android支持库v 28.0.0-rc02
中存在此问题错误,此处已对此问题进行了多次讨论。无论如何
要解决此问题,您需要使用较旧的支持库,例如27.1.1
或应在/app > Build.gradle
中添加的旁路:
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == "com.android.support") {
if (!requested.name.startsWith("multidex")) {
details.useVersion "27.+"
}
}
}
}
或者,您可以在canary频道中下载Android Studio的 Canary版本,以解决此问题。
答案 2 :(得分:-2)
您可以尝试通过“构建”>“重建项目”选项重建项目