Skip to content

Commit

Permalink
Use unsigned release for testing (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillt authored Nov 30, 2023
1 parent 14ca57a commit 7660133
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ jobs:
- name: Upload Release APK
uses: actions/upload-artifact@v3
with:
name: ark-rate-release
path: ./app/build/outputs/apk/release/ark-rate-release.apk
name: ark-rate
path: ./app/build/outputs/apk/release/ark-rate-release-unsigned.apk
12 changes: 1 addition & 11 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,6 @@ android {
}
}
}
signingConfigs {
testRelease {
storeFile project.rootProject.file('./testRelease.jks')
storePassword "arkrate"
keyAlias "key0"
keyPassword "arkrate"
v1SigningEnabled true
v2SigningEnabled true
}
}

buildTypes {
debug {
Expand All @@ -56,7 +46,7 @@ android {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.testRelease

manifestPlaceholders = [
appIcon : "@mipmap/ic_launcher",
appLabel: "@string/app_name"
Expand Down

0 comments on commit 7660133

Please sign in to comment.