Skip to content

Commit

Permalink
chore: Sign
Browse files Browse the repository at this point in the history
  • Loading branch information
jing332 committed Feb 1, 2024
1 parent 7da563c commit fcd6466
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Android CI
name: Android CI (Test)

on:
push:
Expand Down Expand Up @@ -30,5 +30,5 @@ jobs:
- name: Upload apk
uses: actions/[email protected]
with:
# name: apk
name: app-release
path: "${{ github.workspace }}/app/build/outputs/apk/release/*.apk"
13 changes: 12 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,23 @@ android {
}
}

signingConfigs {
release{
storeFile file("filepicker.jks")
storePassword "filepicker"
keyAlias "filepicker"
keyPassword "filepicker"
}
}

buildTypes {
release {
minifyEnabled false
signingConfig signingConfigs.release
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
Expand Down
Binary file added app/filepicker.jks
Binary file not shown.

0 comments on commit fcd6466

Please sign in to comment.