5

I have faced some troubles with uploading release version to fabric(crashlytics) after generating release build in Build->Generate Signed Apk. After moving app-release.apk into Fabric window I see following error: "The provided APK can't be distributed because it is unsigned."

Fabric error

What I'm doing wrong? Keystore and its password didn't change.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
trueangle
  • 230
  • 2
  • 12

2 Answers2

20

I had the same problem yesterday.

I had to make sure the checkboxes for signature versions where both checked. These both are unchecked by default.

enter image description here

Ruben Aalders
  • 624
  • 6
  • 20
0

Just try to add this:-v2SigningEnabled false in your build.gradle.

android {
    ...
    defaultConfig { ... }
    signingConfigs {
      release {
        storeFile file("myreleasekey.keystore")
        storePassword "password"
        keyAlias "MyReleaseKey"
        keyPassword "password"
        v2SigningEnabled false
      }
    }
  }

After then select enter image description here

Amit raj
  • 390
  • 3
  • 8