Reputation: 1
This is the error:
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".
I think there is a problem with the store file, but i didn't change anything. Last month I updated my app and it worked fine, but now isn't working. The only things I did was updating java and grandle version.
Upvotes: 0
Views: 23
Reputation: 1
buildTypes {
release {
`signingConfig` = signingConfigs.debug
}
}
use this in your app level gradle file and clean and then rebuild
Upvotes: 0