启用在Android Studio中创建签名的APK

时间:2018-08-30 12:04:50

标签: java android

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
    applicationId "polarmagic.atlasgames.com.polarmagic.Home"
    minSdkVersion 21
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"

    // Enabling multidex support.
    multiDexEnabled true

}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

dexOptions {
    javaMaxHeapSize "4g"
}
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:27.1.1'
    // AdMob
    compile 'com.google.android.gms:play-services-ads:+'
}

1 个答案:

答案 0 :(得分:0)

为什么不从此窗口生成签名的APK?

您将弹出一个对话框,您需要填写其信息以获取密钥库

enter image description here

如果您没有密钥库,则可以从此处创建一个新的密钥库。

您需要填写一些数据,然后完成。

enter image description here

来自文档here