美文网首页
android studio CreateProcess err

android studio CreateProcess err

作者: hao_developer | 来源:发表于2021-11-11 11:26 被阅读0次
    image.png

    方法一:Using the plugins DSL:

    plugins {
      id "ua.eshepelyuk.ManifestClasspath" version "1.0.0"
    }
    

    方法二:Using legacy plugin application:(推荐)

    buildscript {
      repositories {
        maven {
          url "https://plugins.gradle.org/m2/"
        }
      }
      dependencies {
        classpath "gradle.plugin.ua.eshepelyuk:ManifestClasspath:1.0.0"
      }
    }
    
    apply plugin: "ua.eshepelyuk.ManifestClasspath"
    

    案例:


    image.png

    相关文章

      网友评论

          本文标题:android studio CreateProcess err

          本文链接:https://www.haomeiwen.com/subject/dwwwzltx.html