简体   繁体   English

Android studio : 不能选择签名版

[英]Android studio : Can not choose signature version

I want to build my app with V1 & V2 signature version.我想用 V1 和 V2 签名版本构建我的应用程序。 But both of them are greyed out.但是两者都是灰色的。 Can anyone please tell me how to make it avaiable to choose?谁能告诉我如何使它可供选择? [generate signature] [生成签名]

As described in the official document ,官方文档所述

Android 7.0 introduces APK Signature Scheme v2, a new app-signing scheme that offers faster app install times and more protection against unauthorized alterations to APK files. Android 7.0 引入了 APK 签名方案 v2,这是一种新的应用签名方案,可提供更快的应用安装时间和更多保护,防止对 APK 文件进行未经授权的更改。 By default, Android Studio 2.2 and the Android Plugin for Gradle 2.2 sign your app using both APK Signature Scheme v2 and the traditional signing scheme, which uses JAR signing.默认情况下, Android Studio 2.2和 Android Plugin for Gradle 2.2使用 APK 签名方案 v2 和使用 JAR 签名的传统签名方案对您的应用程序进行签名。

So be sure that the android studio and the gradle plugin of module (build.gradle->com.android.tools.build:gradle) are updated to 2.3 and above .所以一定要把android studio模块gradle插件(build.gradle->com.android.tools.build:gradle)更新到2.3及以上

Updating Android Studio and Gradle version worked for me.更新 Android Studio 和 Gradle 版本对我有用。

Also check your build.gradle and configure it.还要检查你的 build.gradle 并配置它。 More information here APK Signature Scheme v2更多信息在这里APK 签名方案 v2

Basically your Android studio is updated, but gradle plugin of module classpath 'com.android.tools.build:gradle' version is downgrade in build.gradle.基本上你的 Android Studio 已经更新,但是模块classpath 'com.android.tools.build:gradle'版本的 gradle 插件在 build.gradle 中降级。 So please update the version of gradle plugin like this:所以请像这样更新gradle插件的版本:

dependencies{
     classpath 'com.android.tools.build:gradle:3.0.1'
 }

or above in build.gradle.或以上在 build.gradle 中。 and Sync the project.并同步项目。 Thank you!!谢谢!!

one reason could be that if you build your project there are some problems.一个原因可能是,如果您构建项目,则会出现一些问题。 fix the errors and start creating your signs.修复错误并开始创建您的标志。

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

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