Skip to content

Commit

Permalink
1.0.0-alpha.5 + add Android signing config
Browse files Browse the repository at this point in the history
  • Loading branch information
retrixe committed Jan 3, 2023
1 parent 69f3b75 commit 2881789
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0.0-alpha.4"
versionName "1.0.0-alpha.5"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()

if (isNewArchitectureEnabled()) {
Expand Down Expand Up @@ -217,6 +217,14 @@ android {
keyAlias 'androiddebugkey'
keyPassword 'android'
}
release {
if (project.hasProperty('ENDERCHAT_UPLOAD_STORE_FILE')) {
storeFile file(ENDERCHAT_UPLOAD_STORE_FILE)
storePassword ENDERCHAT_UPLOAD_STORE_PASSWORD
keyAlias ENDERCHAT_UPLOAD_KEY_ALIAS
keyPassword ENDERCHAT_UPLOAD_KEY_PASSWORD
}
}
}
buildTypes {
debug {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enderchat",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"private": true,
"license": "MPL-2.0",
"scripts": {
Expand Down

0 comments on commit 2881789

Please sign in to comment.