如何在 android studio 中生成签名的 apk

how to generate signed apk in android studio

在我的例子中,我有我的签名密钥并且我已经生成了带有功能菜单的 apkbuild--->generate signed Bundle/Apk

以下是我生成此 apk 的步骤:

第 1 步:

第 2 步:

最后:

当我将这个生成的release apk 放到我的真实设备中时,它会运行良好。

但是当我试图将这个apk发送到我的申请中心时,它说我在这个apk中没有任何签名文件。

根据 google 上发现的许多问题,我注意到我的 apk 中实际上根本没有签名文件。 Android 工作室的 build--->generate signed Bundle/Apk 似乎根本不起作用,只生成了一个没有签名的版本。

我是 android 开发的新手。我想知道我的 gradle 设置是否有错误。

我的应用程序有 2 个 gradle.build 文件,如下图所示:

应用程序目录外的 gradle.build 是:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    
    repositories {
        google()
        jcenter()
        
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:7.0.3'
        

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

应用程序目录中的 gradle.build 文件是:

apply plugin: 'com.android.application'

android {
    signingConfigs {
        debug {
            storeFile file('D:\CodeRepository\app-key-store\SimpleSender.jks')
            storePassword '123123123'
            keyAlias 'simple-sender-key'
            keyPassword '123123123'
        }
    }
    compileSdkVersion 30
    buildToolsVersion "30.0.0"

    defaultConfig {
        applicationId "com.example.simplesender"
        minSdkVersion 25
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

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

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.google.android.material:material:1.3.0'
    implementation 'androidx.annotation:annotation:1.2.0'
    implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.9.2'
    implementation group: 'com.alibaba', name: 'fastjson', version: '1.2.78'
    implementation group: 'com.google.guava', name: 'guava', version: '31.0.1-android'
    implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'

}

不知道为什么不能生成带有签名的apk...

感谢 @Raj Suvariya@Nitish

根据他们的善意指示,问题得到了解决。我如何解决这个问题如下所示:

首先,我使用的是

版本的 AS
Android Studio Arctic Fox | 2020.3.1 Patch 3

如果您使用相同的 AS,当您尝试使用如下图所示的签名密钥生成已签名的 apk 时,您将找不到 select 签名版本的任何选项(它们都有这些2 个选项)。



完成构建后,APK 可以在我的设备中 运行 正常工作,但我无法将其部署到应用商店,因为应用商店告诉我我在 META-INF 中没有签名文件。

解决方案是 Explicitly specifybuild.gradle 中这样的签名策略,这是代码。重要代码是

            v1SigningEnabled true
            v2SigningEnabled true

这是我的 build.gradle 文件

apply plugin: 'com.android.application'

android {
    signingConfigs {
        debug {
            storeFile file('D:\CodeRepository\app-key-store\SimpleSender.jks')
            storePassword 'xxx'
            keyAlias 'simple-sender-key'
            keyPassword 'xxx'
            v1SigningEnabled true
            v2SigningEnabled true
        }
        release {
            storeFile file('D:\CodeRepository\app-key-store\SimpleSender.jks')
            storePassword 'xxx'
            keyAlias 'simple-sender-key'
            keyPassword 'xxx'
            v1SigningEnabled true
            v2SigningEnabled true
        }
    }

.....your other configs.....

}



再次尝试运行生成签名apk,问题解决,部署到应用商店成功。