mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-27 06:58:24 +00:00
Fix Android app build for domain names that include a dash
See https://discuss.overhang.io/t/build-android-app-command-error/405/30 Android package names should be composed of alphanumeric or underscore characters only (https://developer.android.com/studio/build/application-id.html)
This commit is contained in:
parent
e42c20a133
commit
36e2f81845
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
Note: Breaking changes between versions are indicated by "💥".
|
Note: Breaking changes between versions are indicated by "💥".
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
- [Bugfix] Fix Android app build for domain names that include a dash ("-")
|
||||||
|
|
||||||
## v3.11.8 (2020-04-06)
|
## v3.11.8 (2020-04-06)
|
||||||
|
|
||||||
- [Feature] Add `encrypt` template filter to conveniently add htpasswd-based authentication to nginx
|
- [Feature] Add `encrypt` template filter to conveniently add htpasswd-based authentication to nginx
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
APPLICATION_ID={{ LMS_HOST|reverse_host }}
|
APPLICATION_ID={{ LMS_HOST|reverse_host|replace("-", "_") }}
|
||||||
RELEASE_STORE_FILE=/openedx/config/app.keystore
|
RELEASE_STORE_FILE=/openedx/config/app.keystore
|
||||||
RELEASE_STORE_PASSWORD={{ ANDROID_RELEASE_STORE_PASSWORD }}
|
RELEASE_STORE_PASSWORD={{ ANDROID_RELEASE_STORE_PASSWORD }}
|
||||||
RELEASE_KEY_PASSWORD={{ ANDROID_RELEASE_KEY_PASSWORD }}
|
RELEASE_KEY_PASSWORD={{ ANDROID_RELEASE_KEY_PASSWORD }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user