0

即使我尝试了许多不同的解决方案来解决它,我仍然无法上传从 Android Studio 生成的签名 APK 文件。

这是我上传时得到的:

这张图片是我上传时得到的

我还看到了一些编写 zipalign 命令的解决方案,但是在我的 mac 终端中输入命令时,我总是收到“找不到命令”消息。

这是我在项目内 build.gradle (Module: app) 文件中的配置:

        apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

defaultConfig {
    applicationId "com.name.product"
    minSdkVersion 14
    targetSdkVersion 22
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        zipAlignEnabled true

    }
}

repositories {
    flatDir {
        dirs 'libs'
    }
}
}
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'com.squareup.okhttp3:okhttp:3.0.1'
    compile(name:'material-search', ext:'aar')
    }
4

1 回答 1

0

我找到了这个解决方案,它解决了我的问题:

https://stackoverflow.com/a/37842438/4846301

就是将 build.gradle 文件中的 1 行更改为:

'com.android.tools.build:gradle:2.1.2'
于 2016-06-17T14:21:50.273 回答