Home > OS >  While building APK in flutter project
While building APK in flutter project

Time:10-09

  • What went wrong: Execution failed for task ':app:packageRelease'.

A failure occurred while executing com.android.build.gradle.tasks.PackageAndroidArtifact$IncrementalSplitterRunnable SigningConfig "release" is missing required property "storeFile"

CodePudding user response:

You can try this

android {
    signingConfigs {
        release {
            storeFile file('your_key_store_path')
            storePassword 'your_store_password'
            keyAlias = 'your_key_alias'
            keyPassword 'your_key_password'
        }
    }

    buildTypes {
        release {
            signingConfig signingConfigs.release
        }
    }
}

CodePudding user response:

I faced the same issue when I was working on a github project, and it was because I was trying to generate a signed apk without the upload-keystore.jks in the android/app/ directory. Also I didn't have the key.properties file in the android/ directory. I solved the issue after asking for the files and setting them in the directories mentioned above.

If you are the owner of the project maybe you should try to follow this steps from the documentation.

  • Related