Skip to content

Commit b772e4d

Browse files
committed
Fix filename issues
1 parent 722b1ac commit b772e4d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

catroid/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,8 @@ android {
326326
default:
327327
flavorName = variant.flavorName
328328
}
329-
def versionName = variant.versionName
330329
def buildType = variant.buildType.name
331-
outputFileName = "catroid-${flavorName}-${versionName}-${buildType}.apk"
330+
outputFileName = "catroid-${flavorName}-${buildType}.apk"
332331
}
333332
}
334333
}

fastlane/Fastfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ platform :android do
4646
package_name: 'org.catrobat.catroid',
4747
track: 'alpha',
4848
json_key_data: ENV['googlePlayJsonKey'],
49-
apk_paths: './catroid/build/outputs/apk/catroid/signedRelease/catroid-catroid-signedRelease.apk',
49+
apk_paths: './catroid/build/outputs/apk/catroid/signedRelease/catroid-pocketCode-signedRelease.apk',
5050
skip_upload_apk: 'false',
5151
skip_upload_metadata: 'true',
5252
skip_upload_images: 'true',

0 commit comments

Comments
 (0)