简体   繁体   English

Android Studio 4.1更新后应用程序的Gradle构建错误

[英]Gradle build error of app after Android Studio 4.1 update

I have updated from Android Studio 4.0 to 4.1.我已经从 Android Studio 4.0 更新到 4.1。 After the update I cannot build my application anymore which worked fine before the update.更新后,我无法再构建我的应用程序,这在更新之前运行良好。 When I build the project I am getting the following exception:当我构建项目时,出现以下异常:

FAILURE: Build failed with an exception. FAILURE:构建失败并出现异常。

What went wrong:什么地方出了错:
Execution failed for task ':app:compressDebugAssets'.任务 ':app:compressDebugAssets' 执行失败。
A failure occurred while executing com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out<\/strong>执行 com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out 时发生故障<\/strong>

<\/blockquote>

The folder my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out is empty. my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out 文件夹为空。

What I tried to do:我试图做的事情:

  • Clean and rebuild the project清理并重建项目<\/li>
  • delete the .gradle and the build folder and clean an rebuild the project删除 .gradle 和 build 文件夹并清理重建项目<\/li>
  • invalidate and restart Android studio使 Android Studio 失效并重启<\/li>
  • Increased the heap size in gradle.properties to: org.gradle.jvmargs=-Xmx4096m将 gradle.properties 中的堆大小增加到:org.gradle.jvmargs=-Xmx4096m<\/li>
  • Increased the compileSdkVersion and targetSdkVersion增加了 compileSdkVersion 和 targetSdkVersion<\/li>
  • Installed and updated the buildToolsVersion from 30.0.0 to 30.0.2安装并更新 buildToolsVersion 从 30.0.0 到 30.0.2<\/li>
  • Added multiDexEnabled true to my config在我的配置中添加了 multiDexEnabled true<\/li><\/ul>

    My gradle configuration looks like this:我的 gradle 配置如下所示:

     apply plugin: 'com.android.application' android { compileSdkVersion 'android-R' buildToolsVersion "30.0.2" defaultConfig { applicationId "my.application.id" minSdkVersion 23 targetSdkVersion 29 versionCode 2 versionName "1.1" multiDexEnabled true testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables { useSupportLibrary = true } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } } repositories { mavenCentral() maven { url 'https:\/\/maven.google.com' } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'com.google.android.material:material:1.2.1' implementation 'androidx.constraintlayout:constraintlayout:2.0.2' implementation 'androidx.navigation:navigation-fragment:2.3.1' implementation 'androidx.navigation:navigation-ui:2.3.1' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' testImplementation 'junit:junit:4.13.1' androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' implementation "androidx.room:room-runtime:2.2.5" annotationProcessor "androidx.room:room-compiler:2.2.5" implementation 'com.github.bumptech.glide:glide:4.11.0' implementation 'androidx.multidex:multidex:2.0.1' }<\/code><\/pre>

    Guys, I am out of ideas as I am no expert when it comes to gradle.伙计们,我没有想法,因为我不是 gradle 方面的专家。 Help would be most appreciated.帮助将不胜感激。

    "

I have updated from Android Studio 4.0 to 4.1.我已经从Android Studio 4.0更新到4.1。 After the update I cannot build my application anymore which worked fine before the update.更新后,我无法再构建我的应用程序,该应用程序在更新前运行良好。 When I build the project I am getting the following exception:构建项目时,出现以下异常:

FAILURE: Build failed with an exception.失败:生成失败,发生异常。

What went wrong:什么地方出了错:
Execution failed for task ':app:compressDebugAssets'.任务':app:compressDebugAssets'的执行失败。
A failure occurred while executing com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out执行com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out时发生故障

The folder my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out is empty.文件夹my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out为空。

What I tried to do:我试图做的是:

  • Clean and rebuild the project清理并重建项目
  • delete the .gradle and the build folder and clean an rebuild the project删除.gradle和build文件夹并清理重建项目
  • invalidate and restart Android studio使Android Studio无效并重新启动
  • Increased the heap size in gradle.properties to: org.gradle.jvmargs=-Xmx4096m将gradle.properties中的堆大小增加到:org.gradle.jvmargs = -Xmx4096m
  • Increased the compileSdkVersion and targetSdkVersion增加了compileSdkVersion和targetSdkVersion
  • Installed and updated the buildToolsVersion from 30.0.0 to 30.0.2安装并将buildToolsVersion从30.0.0更新到30.0.2
  • Added multiDexEnabled true to my config在我的配置中添加了multiDexEnabled true

My gradle configuration looks like this:我的gradle配置看起来像这样:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 'android-R'
    buildToolsVersion "30.0.2"

    defaultConfig {
         applicationId "my.application.id"
         minSdkVersion 23
         targetSdkVersion 29
         versionCode 2
         versionName "1.1"
         multiDexEnabled true
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

         vectorDrawables {
             useSupportLibrary = true
         }
     }

     buildTypes {
         release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
         }
     }
 }

 repositories {
     mavenCentral()
     maven { url 'https://maven.google.com' }
 }

 dependencies {
     implementation fileTree(dir: "libs", include: ["*.jar"])
     implementation 'androidx.appcompat:appcompat:1.2.0'
     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
     implementation 'com.google.android.material:material:1.2.1'
     implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
     implementation 'androidx.navigation:navigation-fragment:2.3.1'
     implementation 'androidx.navigation:navigation-ui:2.3.1'
     implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
     testImplementation 'junit:junit:4.13.1'
     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
     implementation "androidx.room:room-runtime:2.2.5"
     annotationProcessor "androidx.room:room-compiler:2.2.5"
     implementation 'com.github.bumptech.glide:glide:4.11.0'
     implementation 'androidx.multidex:multidex:2.0.1'
 }

Guys, I am out of ideas as I am no expert when it comes to gradle.伙计们,我没有主意,因为我不是专家。 Help would be most appreciated.帮助将是最大的赞赏。

I have updated from Android Studio 4.0 to 4.1.我已经从Android Studio 4.0更新到4.1。 After the update I cannot build my application anymore which worked fine before the update.更新后,我无法再构建我的应用程序,该应用程序在更新前运行良好。 When I build the project I am getting the following exception:构建项目时,出现以下异常:

FAILURE: Build failed with an exception.失败:生成失败,发生异常。

What went wrong:什么地方出了错:
Execution failed for task ':app:compressDebugAssets'.任务':app:compressDebugAssets'的执行失败。
A failure occurred while executing com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out执行com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out时发生故障

The folder my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out is empty.文件夹my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out为空。

What I tried to do:我试图做的是:

  • Clean and rebuild the project清理并重建项目
  • delete the .gradle and the build folder and clean an rebuild the project删除.gradle和build文件夹并清理重建项目
  • invalidate and restart Android studio使Android Studio无效并重新启动
  • Increased the heap size in gradle.properties to: org.gradle.jvmargs=-Xmx4096m将gradle.properties中的堆大小增加到:org.gradle.jvmargs = -Xmx4096m
  • Increased the compileSdkVersion and targetSdkVersion增加了compileSdkVersion和targetSdkVersion
  • Installed and updated the buildToolsVersion from 30.0.0 to 30.0.2安装并将buildToolsVersion从30.0.0更新到30.0.2
  • Added multiDexEnabled true to my config在我的配置中添加了multiDexEnabled true

My gradle configuration looks like this:我的gradle配置看起来像这样:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 'android-R'
    buildToolsVersion "30.0.2"

    defaultConfig {
         applicationId "my.application.id"
         minSdkVersion 23
         targetSdkVersion 29
         versionCode 2
         versionName "1.1"
         multiDexEnabled true
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

         vectorDrawables {
             useSupportLibrary = true
         }
     }

     buildTypes {
         release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
         }
     }
 }

 repositories {
     mavenCentral()
     maven { url 'https://maven.google.com' }
 }

 dependencies {
     implementation fileTree(dir: "libs", include: ["*.jar"])
     implementation 'androidx.appcompat:appcompat:1.2.0'
     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
     implementation 'com.google.android.material:material:1.2.1'
     implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
     implementation 'androidx.navigation:navigation-fragment:2.3.1'
     implementation 'androidx.navigation:navigation-ui:2.3.1'
     implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
     testImplementation 'junit:junit:4.13.1'
     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
     implementation "androidx.room:room-runtime:2.2.5"
     annotationProcessor "androidx.room:room-compiler:2.2.5"
     implementation 'com.github.bumptech.glide:glide:4.11.0'
     implementation 'androidx.multidex:multidex:2.0.1'
 }

Guys, I am out of ideas as I am no expert when it comes to gradle.伙计们,我没有主意,因为我不是专家。 Help would be most appreciated.帮助将是最大的赞赏。

I have updated from Android Studio 4.0 to 4.1.我已经从Android Studio 4.0更新到4.1。 After the update I cannot build my application anymore which worked fine before the update.更新后,我无法再构建我的应用程序,该应用程序在更新前运行良好。 When I build the project I am getting the following exception:构建项目时,出现以下异常:

FAILURE: Build failed with an exception.失败:生成失败,发生异常。

What went wrong:什么地方出了错:
Execution failed for task ':app:compressDebugAssets'.任务':app:compressDebugAssets'的执行失败。
A failure occurred while executing com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out执行com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out时发生故障

The folder my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out is empty.文件夹my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out为空。

What I tried to do:我试图做的是:

  • Clean and rebuild the project清理并重建项目
  • delete the .gradle and the build folder and clean an rebuild the project删除.gradle和build文件夹并清理重建项目
  • invalidate and restart Android studio使Android Studio无效并重新启动
  • Increased the heap size in gradle.properties to: org.gradle.jvmargs=-Xmx4096m将gradle.properties中的堆大小增加到:org.gradle.jvmargs = -Xmx4096m
  • Increased the compileSdkVersion and targetSdkVersion增加了compileSdkVersion和targetSdkVersion
  • Installed and updated the buildToolsVersion from 30.0.0 to 30.0.2安装并将buildToolsVersion从30.0.0更新到30.0.2
  • Added multiDexEnabled true to my config在我的配置中添加了multiDexEnabled true

My gradle configuration looks like this:我的gradle配置看起来像这样:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 'android-R'
    buildToolsVersion "30.0.2"

    defaultConfig {
         applicationId "my.application.id"
         minSdkVersion 23
         targetSdkVersion 29
         versionCode 2
         versionName "1.1"
         multiDexEnabled true
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

         vectorDrawables {
             useSupportLibrary = true
         }
     }

     buildTypes {
         release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
         }
     }
 }

 repositories {
     mavenCentral()
     maven { url 'https://maven.google.com' }
 }

 dependencies {
     implementation fileTree(dir: "libs", include: ["*.jar"])
     implementation 'androidx.appcompat:appcompat:1.2.0'
     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
     implementation 'com.google.android.material:material:1.2.1'
     implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
     implementation 'androidx.navigation:navigation-fragment:2.3.1'
     implementation 'androidx.navigation:navigation-ui:2.3.1'
     implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
     testImplementation 'junit:junit:4.13.1'
     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
     implementation "androidx.room:room-runtime:2.2.5"
     annotationProcessor "androidx.room:room-compiler:2.2.5"
     implementation 'com.github.bumptech.glide:glide:4.11.0'
     implementation 'androidx.multidex:multidex:2.0.1'
 }

Guys, I am out of ideas as I am no expert when it comes to gradle.伙计们,我没有主意,因为我不是专家。 Help would be most appreciated.帮助将是最大的赞赏。

I have updated from Android Studio 4.0 to 4.1.我已经从Android Studio 4.0更新到4.1。 After the update I cannot build my application anymore which worked fine before the update.更新后,我无法再构建我的应用程序,该应用程序在更新前运行良好。 When I build the project I am getting the following exception:构建项目时,出现以下异常:

FAILURE: Build failed with an exception.失败:生成失败,发生异常。

What went wrong:什么地方出了错:
Execution failed for task ':app:compressDebugAssets'.任务':app:compressDebugAssets'的执行失败。
A failure occurred while executing com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out执行com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out时发生故障

The folder my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out is empty.文件夹my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out为空。

What I tried to do:我试图做的是:

  • Clean and rebuild the project清理并重建项目
  • delete the .gradle and the build folder and clean an rebuild the project删除.gradle和build文件夹并清理重建项目
  • invalidate and restart Android studio使Android Studio无效并重新启动
  • Increased the heap size in gradle.properties to: org.gradle.jvmargs=-Xmx4096m将gradle.properties中的堆大小增加到:org.gradle.jvmargs = -Xmx4096m
  • Increased the compileSdkVersion and targetSdkVersion增加了compileSdkVersion和targetSdkVersion
  • Installed and updated the buildToolsVersion from 30.0.0 to 30.0.2安装并将buildToolsVersion从30.0.0更新到30.0.2
  • Added multiDexEnabled true to my config在我的配置中添加了multiDexEnabled true

My gradle configuration looks like this:我的gradle配置看起来像这样:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 'android-R'
    buildToolsVersion "30.0.2"

    defaultConfig {
         applicationId "my.application.id"
         minSdkVersion 23
         targetSdkVersion 29
         versionCode 2
         versionName "1.1"
         multiDexEnabled true
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

         vectorDrawables {
             useSupportLibrary = true
         }
     }

     buildTypes {
         release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
         }
     }
 }

 repositories {
     mavenCentral()
     maven { url 'https://maven.google.com' }
 }

 dependencies {
     implementation fileTree(dir: "libs", include: ["*.jar"])
     implementation 'androidx.appcompat:appcompat:1.2.0'
     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
     implementation 'com.google.android.material:material:1.2.1'
     implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
     implementation 'androidx.navigation:navigation-fragment:2.3.1'
     implementation 'androidx.navigation:navigation-ui:2.3.1'
     implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
     testImplementation 'junit:junit:4.13.1'
     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
     implementation "androidx.room:room-runtime:2.2.5"
     annotationProcessor "androidx.room:room-compiler:2.2.5"
     implementation 'com.github.bumptech.glide:glide:4.11.0'
     implementation 'androidx.multidex:multidex:2.0.1'
 }

Guys, I am out of ideas as I am no expert when it comes to gradle.伙计们,我没有主意,因为我不是专家。 Help would be most appreciated.帮助将是最大的赞赏。

I have this problem when I try to build apk with capacitor Ionic in Android Studio.当我尝试在 Android Studio 中使用电容器 Ionic 构建 apk 时,我遇到了这个问题。 My solution was:我的解决方案是:

First change the Android Gradle plugin in build.gradle to classpath 'com.android.tools.build:gradle:4.0.2' and in gradle-wrapper.properties change Gradle version to distributionUrl=https\\://services.gradle.org/distributions/gradle-6.1.1-all.zip and press Sync Now .首先将 build.gradle 中的 Android Gradle 插件更改为classpath 'com.android.tools.build:gradle:4.0.2'并在 gradle-wrapper.properties 中将 Gradle 版本更改为distributionUrl=https\\://services.gradle.org/distributions/gradle-6.1.1-all.zip并按Sync Now

When gradle sync is finish, close Android Studio Editor and go to project folder and delete .idea and .gradle folders. gradle 同步完成后,关闭 Android Studio 编辑器并转到项目文件夹并删除.idea.gradle文件夹。 Next you need to open PowerSheel in this location and run the code .\\gradlew clean .接下来,您需要在此位置打开 PowerSheel 并运行代码.\\gradlew clean

Finally, you can open the project with android studio using in vs npx cap open android or as you want, wait for sync gradle and then you can build your apk.最后,您可以使用 android studio 使用 in vs npx cap open android打开项目,或者根据需要等待同步 gradle,然后您可以构建您的 apk。

I have updated from Android Studio 4.0 to 4.1.我已经从Android Studio 4.0更新到4.1。 After the update I cannot build my application anymore which worked fine before the update.更新后,我无法再构建我的应用程序,该应用程序在更新前运行良好。 When I build the project I am getting the following exception:构建项目时,出现以下异常:

FAILURE: Build failed with an exception.失败:生成失败,发生异常。

What went wrong:什么地方出了错:
Execution failed for task ':app:compressDebugAssets'.任务':app:compressDebugAssets'的执行失败。
A failure occurred while executing com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out执行com.android.build.gradle.internal.tasks.CompressAssetsWorkAction my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out时发生故障

The folder my\\application\\path\\app\\build\\intermediates\\merged_assets\\debug\\out is empty.文件夹my \\ application \\ path \\ app \\ build \\ intermediates \\ merged_assets \\ debug \\ out为空。

What I tried to do:我试图做的是:

  • Clean and rebuild the project清理并重建项目
  • delete the .gradle and the build folder and clean an rebuild the project删除.gradle和build文件夹并清理重建项目
  • invalidate and restart Android studio使Android Studio无效并重新启动
  • Increased the heap size in gradle.properties to: org.gradle.jvmargs=-Xmx4096m将gradle.properties中的堆大小增加到:org.gradle.jvmargs = -Xmx4096m
  • Increased the compileSdkVersion and targetSdkVersion增加了compileSdkVersion和targetSdkVersion
  • Installed and updated the buildToolsVersion from 30.0.0 to 30.0.2安装并将buildToolsVersion从30.0.0更新到30.0.2
  • Added multiDexEnabled true to my config在我的配置中添加了multiDexEnabled true

My gradle configuration looks like this:我的gradle配置看起来像这样:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 'android-R'
    buildToolsVersion "30.0.2"

    defaultConfig {
         applicationId "my.application.id"
         minSdkVersion 23
         targetSdkVersion 29
         versionCode 2
         versionName "1.1"
         multiDexEnabled true
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

         vectorDrawables {
             useSupportLibrary = true
         }
     }

     buildTypes {
         release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
         }
     }
 }

 repositories {
     mavenCentral()
     maven { url 'https://maven.google.com' }
 }

 dependencies {
     implementation fileTree(dir: "libs", include: ["*.jar"])
     implementation 'androidx.appcompat:appcompat:1.2.0'
     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
     implementation 'com.google.android.material:material:1.2.1'
     implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
     implementation 'androidx.navigation:navigation-fragment:2.3.1'
     implementation 'androidx.navigation:navigation-ui:2.3.1'
     implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
     testImplementation 'junit:junit:4.13.1'
     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
     implementation "androidx.room:room-runtime:2.2.5"
     annotationProcessor "androidx.room:room-compiler:2.2.5"
     implementation 'com.github.bumptech.glide:glide:4.11.0'
     implementation 'androidx.multidex:multidex:2.0.1'
 }

Guys, I am out of ideas as I am no expert when it comes to gradle.伙计们,我没有主意,因为我不是专家。 Help would be most appreciated.帮助将是最大的赞赏。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM