zoukankan      html  css  js  c++  java
  • Android studio 3.0 引起的 outputFile sync failed:not vaild

    我们大多使用 android studio 改变生成安装包命名会用以下方式:

    applicationVariants.all { variant ->
    
        variant.outputs.each { out ->
    
            def oFile =out.outputFile  // outputFile causes failure
    
            //...
        }
    }
    

      但是更新到as3.0以后,会同步失败。stackoverflow上有人(http://stackoverflow.com/questions/44044031/grade-plugin-3-alpha1-outputfile-causes-error)说:

    This build error occurs because variant-specific tasks are no longer created during the configuration stage.
    This results in the plugin not knowing all of its outputs up front, but it also means faster configuration times.
    As an alternative, we will introduce new APIs to provide similar functionality.

     

    查询官网介绍:https://developer.android.com/studio/preview/features/new-android-plugin-migration.html#variant_api

    API change in variant output 
    

      

    发现解决方案:

    // If you use each() to iterate through the variant objects,
    // you need to start using all(). That's because each() iterates
    // through only the objects that already exist during configuration time—
    // but those object don't exist at configuration time with the new model.
    // However, all() adapts to the new model by picking up object as they are
    // added during execution.
    android.applicationVariants.all { variant ->
        variant.outputs.all {
            outputFileName = "${variant.name}-${variant.versionName}.apk"
        }
    }
    

      

  • 相关阅读:
    解决Laravel错误1071 Specified key was too long的多种方法
    优雅笔记
    Centos 发布docker(二)
    centOS7虚拟机设置固定IP
    开启Docker远程访问
    docker.service: Failed with result ‘exit-code‘
    jpa 中 page.map 方法的使用
    Xshell 通过ssh 连接主机
    JeecgBoot Minio版本6.0.13升级到8.0.3修改方法
    gateway 跨域
  • 原文地址:https://www.cnblogs.com/uinique/p/6890319.html
Copyright © 2011-2022 走看看