From 22448df392706d8a8bfda1aab5a068a1c78cb061 Mon Sep 17 00:00:00 2001 From: serso Date: Mon, 30 Apr 2018 15:30:39 +0200 Subject: [PATCH] Fix apk location in uploadArchives task --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 714cbef7..ac7bba35 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -149,7 +149,7 @@ task androidSourcesJar(type: Jar) { artifacts { archives androidSourcesJar - archives file: file('build/outputs/apk/app-release.apk'), name: 'calculatorpp-app', classifier: 'signed', type: 'apk' + archives file: file('build/outputs/apk/release/app-release.apk'), name: 'calculatorpp-app', classifier: 'signed', type: 'apk' archives file: file('build/outputs/mapping/release/mapping.txt'), name: 'calculatorpp-app', classifier: 'proguard', type: 'txt' }