Android Studio 问题、缺少平台、设计编辑器

Android Studio 问题、缺少平台、设计编辑器

我是 AS 新手,遇到了不少问题。我尝试了其他人帖子中的一些方法,但无济于事。

它说我缺少平台,但正如您在图片中看到的那样,我已经安装了所有版本 28 的东西。然而,它要求安装版本 26。

在此处输入图片描述 在此处输入图片描述 在此处输入图片描述

我正在努力工作,只希望它能正常工作,这样我就可以开始我的课程了。

我正在使用 V 3.0.1,但不想升级,因为我正在使用的免费 wifi 不是最好的。

任何帮助都非常好,TIA。斯科特

答案1

您指定使用 SDK v26。在 build.grandle 中设置compileSdkVersion 28和,这样它就不会要求 SDK v 26。阅读此内容了解更多信息:targetSdkVersion 28https://stackoverflow.com/questions/26694108/compilesdkversion-and-targetsdkversion 之间的区别是什么

这是一个编程问题,因此下次请使用 stackoverflow。

答案2

我没有指定任何内容,因为我不知道该怎么做。我该如何修复它?在关注其他人的帖子之前,我尝试将其更改为 28,但无济于事。

编辑以添加;我已将两个参数都更改为 28,并且 minsdk 也设置为 28,应该更低吗?

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.scott.justworkdamnit"
        minSdkVersion 28
        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 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    implementation 'com.android.support:design:26.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'
}

附言:下次我会记得使用 stackoverflow,谢谢 ;)

相关内容