Skip to content

Commit c4fb43f

Browse files
committed
no message
1 parent 8f19987 commit c4fb43f

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

.github/workflows/build_and_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ jobs:
3434
- name: Upload APK to GitHub Release
3535
uses: softprops/action-gh-release@v2
3636
with:
37-
files: app/build/outputs/apk/debug/app-debug.apk
37+
files: app/build/outputs/apk/app/debug/app-app-debug.apk
3838
env:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

app/build.gradle

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,6 @@ android {
8686
shrinkResources true
8787
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
8888
}
89-
90-
android.applicationVariants.all { variant ->
91-
variant.outputs.all {
92-
outputFileName = ("${model.name}" +
93-
"_v${variant.versionName}" +
94-
"_${variant.versionCode}" +
95-
"_${variant.buildType.name}" +
96-
// "_${variant.productFlavors[0].name}" +
97-
"_${gitCommitId}" +
98-
"_${time.time}" +
99-
".apk")/*.replace("_release", "")*/
100-
}
101-
}
10289
}
10390
flavorDimensions += "mode"
10491
productFlavors {

0 commit comments

Comments
 (0)