即使我尝试了许多不同的解决方案来解决它,我仍然无法上传从 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')
}