7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-03 23:00:46 +00:00

Fix Android apk path

Close #70
This commit is contained in:
Régis Behmo 2018-10-03 15:43:21 +02:00
parent f03e120d9e
commit 1dab77178d
2 changed files with 3 additions and 3 deletions

View File

@ -205,8 +205,8 @@ https-certificate-renew: ## Renew https certificates
#################### Android application
android: ## Build the Android app, for development
docker-compose -f docker-compose-android.yml run --rm android
@echo "Your APK file is ready: ./data/android/edx-prod-debuggable-2.14.0.apk"
@docker-compose -f docker-compose-android.yml run --rm android
@echo "Your APK file is ready: ./data/android/$(shell ls data/android/*.apk)"
android-release: ## Build the final Android app (beta)
# Note that this requires that you edit ./config/android/gradle.properties

View File

@ -30,4 +30,4 @@ RUN ln -s /openedx/config/gradle.properties ./OpenEdXMobile/gradle.properties
RUN yes | /openedx/android-sdk/tools/bin/sdkmanager --licenses
CMD ./gradlew assembleProdDebuggable && \
cp OpenEdXMobile/build/outputs/apk/*.apk /openedx/data/
cp OpenEdXMobile/build/outputs/apk/prod/debuggable/*.apk /openedx/data/