Android Studio 4.1 Canary 1 不显示布局检查器实时更新

Android Studio 4.1 Canary 1 not showing Layout Inspector Live updates

我已经安装了 Android Studio 4.1 Canary 但是 Layout Inspector 根本不显示实时更新和进程。从 Android Studio 设置启用了实验性,但没有发生任何事情。

这是我的 build.gradle 文件。所以一切看起来都很好,但没有显示实时更新。

 apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: "androidx.navigation.safeargs.kotlin"

android {
    compileSdkVersion 29

    defaultConfig {
        applicationId "com.example.test"
        minSdkVersion 21
        targetSdkVersion 29
        buildToolsVersion "29.0.3"
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        targetCompatibility JavaVersion.VERSION_1_8
        sourceCompatibility JavaVersion.VERSION_1_8
    }
    configurations.all {
        resolutionStrategy {
            force 'androidx.appcompat:appcompat:1.1.0'
            force  'com.google.android.exoplayer:exoplayer:2.10.4'
        }
    }
    kotlinOptions {
        jvmTarget = JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.2.0'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'



}

您必须 运行 您的 Android Studio 项目 API 29 或更高版本才能查看 Android Studio 金丝雀版布局检查器的实时更新。

此问题在更新 Android Studio 4.1 Canary 2 后得到解决。现在一切正常。

有类似的问题,布局检查器似乎适用于最近的 Android 版本的模拟器。

无法使用 API 28 模拟器,但可以使用 API 29 模拟器。