Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – “签名配置应该在Gradle构建脚本中指定”…我做了大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
当我来签署我的应用程序时,我有@L_944_1@很大的问题:我已经按照文档设置了签名配置:
signingConfigs {
    release {
        storeFile file("lomapnew.keystore")
        storepassword "mypassword"
        keyAlias "myAlias"
        keypassword "Something...."
    }
}

但是我仍然收到以下错误消息:“应在Gradle构建脚本中指定签名配置”

解决方法

我要出门走走,猜测你还没有为发布构建类型设置签名配置.调试构建类型是自动的,因此这对于所有其他构建类型(包括发行版)都是必须的步骤并不明显.

您可以如下应用签名配置:

android {
    signingConfigs {
        // It's not necessary to specify,but I like to keep the debug keystore
        // in SCM so all our debug builds (on all workstations) use the same
        // key for convenience
        debug {
            storeFile file("debug.keystore")
        }
        release {
            storeFile file("release.keystore")
            storepassword "mypassword"
            keyAlias "myAlias"
            keypassword "Something...."
        }
    }

    buildTypes {
        /* This one happens automatically
        debug {
            signingConfig signingConfigs.debug
        }
        */
        release {
            signingConfig signingConfigs.release
        }
    }
}

大佬总结

以上是大佬教程为你收集整理的android – “签名配置应该在Gradle构建脚本中指定”…我做了全部内容,希望文章能够帮你解决android – “签名配置应该在Gradle构建脚本中指定”…我做了所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。