Skip to content

Commit

Permalink
Update gradle to sign apk
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaiserdragon2 committed Jul 27, 2024
1 parent 941cf3e commit 8e96e41
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/BuildRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,7 @@ jobs:
echo $GITHUB_REF_NAME
echo $name
echo $changelog
gh release create $GITHUB_REF_NAME --generate-notes --title "$name" --notes "$changelog" --discussion-category "Announcements"
app/build/outputs/apk/normal/release/*.apk
app/build/outputs/apk/black/release/*.apk
app/build/outputs/apk/dayNight/release/*.apk
app/build/outputs/apk/you/release/*.apk
gh release create $GITHUB_REF_NAME --generate-notes --title "$name" --notes "$changelog" --discussion-category "Announcements" app/build/outputs/apk/normal/release/*.apk app/build/outputs/apk/black/release/*.apk app/build/outputs/apk/dayNight/release/*.apk app/build/outputs/apk/you/release/*.apk
env:
GH_TOKEN: ${{ github.token }}
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ bundletool.jar
freedesktop-theme/arcticons*
/app/src/main/assets/contributors/downloaded
app/src/main/res/xml/contributors.xml
keystore.properties
key.jks
3 changes: 3 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ android {
}

buildTypes {
configureEach {
signingConfig = releaseSigning
}
release {
minifyEnabled false
}
Expand Down
1 change: 0 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.App.Starting"
tools:replace="android:icon"
tools:targetApi="n">

<activity
Expand Down

0 comments on commit 8e96e41

Please sign in to comment.