commit
4d4bc48689
11
.github/workflows/test.yml
vendored
11
.github/workflows/test.yml
vendored
@ -7,12 +7,15 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ['3.8', '3.12']
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: 3.8
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Upgrade pip
|
- name: Upgrade pip
|
||||||
run: python -m pip install --upgrade pip setuptools
|
run: python -m pip install --upgrade pip setuptools
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|||||||
10
CHANGELOG.md
10
CHANGELOG.md
@ -19,6 +19,16 @@ instructions, because git commits are used to generate release notes:
|
|||||||
|
|
||||||
<!-- scriv-insert-here -->
|
<!-- scriv-insert-here -->
|
||||||
|
|
||||||
|
<a id='changelog-18.0.0'></a>
|
||||||
|
## v18.0.0 (2024-06-20)
|
||||||
|
|
||||||
|
- 💥[Feature] Upgrade to redwood (by @dawoudsheraz)
|
||||||
|
- [Bugfix] Make plugin compatible with Python 3.12 by removing dependency on `pkg_resources`. (by @regisb)
|
||||||
|
- 💥[Feature] Upgrade the deprecated [edx-app-android](https://github.com/openedx-unsupported/edx-app-android) to [openedx-app-android](https://github.com/openedx/openedx-app-android). (by @hamza-56)
|
||||||
|
- [Feature] Update the tutor.yaml configuration to align with the new app’s default settings. See the default configuration here: [default_config/prod/config.yaml](https://github.com/openedx/openedx-app-android/blob/main/default_config/prod/config.yaml) (by @cmltawt0).
|
||||||
|
- [Feature] Enhanced `ANDROID_APP_VERSION` logic to dynamically set the version based on `OPENEDX_COMMON_VERSION`: for nightly builds, `ANDROID_APP_VERSION` is set to main. For other builds, `ANDROID_APP_VERSION` is set to the value of `OPENEDX_COMMON_VERSION`. (by @hamza-56)
|
||||||
|
|
||||||
|
|
||||||
<a id='changelog-17.0.0'></a>
|
<a id='changelog-17.0.0'></a>
|
||||||
## v17.0.0 (2023-12-09)
|
## v17.0.0 (2023-12-09)
|
||||||
|
|
||||||
|
|||||||
@ -23,16 +23,16 @@ The ``.apk`` file will then be available for download at http(s)://mobile.LMS_HO
|
|||||||
Building a custom Android app
|
Building a custom Android app
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
The Android app is built from the `official edx-app-android repository <https://github.com/edx/edx-app-android/>`__. To change this repository or the app version, you can simply build a different docker image with::
|
The Android app is built from the `official openedx-app-android repository <https://github.com/openedx/openedx-app-android/>`__. To change this repository or the app version, you can simply build a different docker image with::
|
||||||
|
|
||||||
tutor images build \
|
tutor images build \
|
||||||
--build-arg ANDROID_APP_REPOSITORY=https://github.com/mycustomfork/edx-app-android \
|
--build-arg ANDROID_APP_REPOSITORY=https://github.com/mycustomfork/openedx-app-android \
|
||||||
--build-arg ANDROID_APP_VERSION=master \
|
--build-arg ANDROID_APP_VERSION=master \
|
||||||
android
|
android
|
||||||
|
|
||||||
Alternatively, you can build an image from a local checked-out fork of edx-app-android::
|
Alternatively, you can build an image from a local checked-out fork of openedx-app-android::
|
||||||
|
|
||||||
tutor mounts add /path/to/edx-app-android
|
tutor mounts add /path/to/openedx-app-android
|
||||||
tutor local launch
|
tutor local launch
|
||||||
|
|
||||||
Making courses visible in app
|
Making courses visible in app
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
- [Bugfix] Make plugin compatible with Python 3.12 by removing dependency on `pkg_resources`. (by @regisb)
|
|
||||||
4
setup.py
4
setup.py
@ -43,8 +43,8 @@ setup(
|
|||||||
packages=find_packages(exclude=["tests*"]),
|
packages=find_packages(exclude=["tests*"]),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
python_requires=">=3.8",
|
python_requires=">=3.8",
|
||||||
install_requires=["tutor>=17.0.0,<18.0.0"],
|
install_requires=["tutor>=18.0.0,<19.0.0"],
|
||||||
extras_require={"dev": ["tutor[dev]>=17.0.0,<18.0.0"]},
|
extras_require={"dev": ["tutor[dev]>=18.0.0,<19.0.0"]},
|
||||||
entry_points={
|
entry_points={
|
||||||
"tutor.plugin.v1": [
|
"tutor.plugin.v1": [
|
||||||
"android = tutorandroid.plugin"
|
"android = tutorandroid.plugin"
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
__version__ = "17.0.0"
|
__version__ = "18.0.0"
|
||||||
|
|||||||
@ -116,9 +116,9 @@ def _build_custom_android_app(
|
|||||||
mounts: list[tuple[str, str]], host_path: str
|
mounts: list[tuple[str, str]], host_path: str
|
||||||
) -> list[tuple[str, str]]:
|
) -> list[tuple[str, str]]:
|
||||||
path_basename = os.path.basename(host_path)
|
path_basename = os.path.basename(host_path)
|
||||||
if path_basename == "edx-app-android":
|
if path_basename == "openedx-app-android":
|
||||||
# Bind-mount repo at build-time
|
# Bind-mount repo at build-time
|
||||||
mounts.append(("android", "edx-app-android"))
|
mounts.append(("android", "openedx-app-android"))
|
||||||
return mounts
|
return mounts
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -16,7 +16,7 @@ FROM base AS sdk
|
|||||||
# Install Android SDK
|
# Install Android SDK
|
||||||
# Inspired from https://github.com/LiveXP/docker-android-sdk/blob/master/Dockerfile
|
# Inspired from https://github.com/LiveXP/docker-android-sdk/blob/master/Dockerfile
|
||||||
# Get sdk version from here: https://developer.android.com/studio#command-tools
|
# Get sdk version from here: https://developer.android.com/studio#command-tools
|
||||||
ENV ANDROID_SDK_VERSION 10406996
|
ENV ANDROID_SDK_VERSION 11076708
|
||||||
ENV ANDROID_SDK_PATH /app/android-sdk
|
ENV ANDROID_SDK_PATH /app/android-sdk
|
||||||
ENV ANDROID_HOME /app/android-sdk
|
ENV ANDROID_HOME /app/android-sdk
|
||||||
RUN mkdir ${ANDROID_HOME}
|
RUN mkdir ${ANDROID_HOME}
|
||||||
@ -28,27 +28,25 @@ RUN wget --quiet https://dl.google.com/android/repository/commandlinetools-linux
|
|||||||
# Accept licenses
|
# Accept licenses
|
||||||
# https://developer.android.com/studio/command-line/sdkmanager
|
# https://developer.android.com/studio/command-line/sdkmanager
|
||||||
# Check target version: https://github.com/edx/edx-app-android/blob/master/constants.gradle
|
# Check target version: https://github.com/edx/edx-app-android/blob/master/constants.gradle
|
||||||
ARG ANDROID_API_LEVEL=33
|
ARG ANDROID_API_LEVEL=34
|
||||||
RUN yes | /app/android-sdk/cmdline-tools/bin/sdkmanager --sdk_root=${ANDROID_HOME} --install "platforms;android-$ANDROID_API_LEVEL" 1> /dev/null
|
RUN yes | /app/android-sdk/cmdline-tools/bin/sdkmanager --sdk_root=${ANDROID_HOME} --install "platforms;android-$ANDROID_API_LEVEL" 1> /dev/null
|
||||||
|
|
||||||
###### Checkout code
|
###### Checkout code
|
||||||
FROM base AS code
|
FROM base AS code
|
||||||
# Install android app repo
|
# Install android app repo
|
||||||
ARG ANDROID_APP_REPOSITORY=https://github.com/openedx/edx-app-android.git
|
ARG ANDROID_APP_REPOSITORY=https://github.com/openedx/openedx-app-android.git
|
||||||
|
ARG ANDROID_APP_VERSION={% if OPENEDX_COMMON_VERSION == "master" %}main{% else %}{{ OPENEDX_COMMON_VERSION }}{% endif %}
|
||||||
# Please add ANDROID_APP_VERSION value in tutor config from release version https://github.com/openedx/edx-app-android/tags
|
ADD --keep-git-dir $ANDROID_APP_REPOSITORY#$ANDROID_APP_VERSION /app/openedx-app-android
|
||||||
ARG ANDROID_APP_VERSION={% if OPENEDX_COMMON_VERSION == "master" %}master{% else %}release/{{ ANDROID_APP_VERSION }}{% endif %}
|
|
||||||
ADD --keep-git-dir $ANDROID_APP_REPOSITORY#$ANDROID_APP_VERSION /app/edx-app-android
|
|
||||||
|
|
||||||
###### Empty layer to mount custom repo at build time
|
###### Empty layer to mount custom repo at build time
|
||||||
FROM scratch AS edx-app-android
|
FROM scratch AS openedx-app-android
|
||||||
COPY --from=code /app/edx-app-android /
|
COPY --from=code /app/openedx-app-android /
|
||||||
|
|
||||||
###### Common layer, which will be used to build the user-specific image later
|
###### Common layer, which will be used to build the user-specific image later
|
||||||
FROM sdk AS common
|
FROM sdk AS common
|
||||||
|
|
||||||
COPY --from=edx-app-android / /app/edx-app-android
|
COPY --from=openedx-app-android / /app/openedx-app-android
|
||||||
WORKDIR /app/edx-app-android
|
WORKDIR /app/openedx-app-android
|
||||||
|
|
||||||
# Install gradle and all dependencies
|
# Install gradle and all dependencies
|
||||||
RUN ./gradlew -v
|
RUN ./gradlew -v
|
||||||
@ -58,8 +56,9 @@ RUN ./gradlew tasks
|
|||||||
FROM common as build
|
FROM common as build
|
||||||
|
|
||||||
# User-customized config
|
# User-customized config
|
||||||
COPY ./config/edx.properties ./OpenEdXMobile/default_config/edx.properties
|
COPY ./config/tutor.yaml ./default_config/dev/config.yaml
|
||||||
COPY ./config/tutor.yaml ./OpenEdXMobile/default_config/tutor.yaml
|
COPY ./config/tutor.yaml ./default_config/stage/config.yaml
|
||||||
|
COPY ./config/tutor.yaml ./default_config/prod/config.yaml
|
||||||
{% if ANDROID_ENABLE_RELEASE_MODE %}
|
{% if ANDROID_ENABLE_RELEASE_MODE %}
|
||||||
# Add release settings
|
# Add release settings
|
||||||
COPY ./config/gradle.properties ./gradle.properties.tutor
|
COPY ./config/gradle.properties ./gradle.properties.tutor
|
||||||
@ -68,10 +67,11 @@ RUN cat ./gradle.properties.tutor >> ./gradle.properties
|
|||||||
|
|
||||||
# uncomment this line for for release APK.
|
# uncomment this line for for release APK.
|
||||||
# RUN sed -i "s/APPLICATION_ID = .*/APPLICATION_ID = \"{{ LMS_HOST|reverse_host|replace("-", "_") }}\"/g" constants.gradle
|
# RUN sed -i "s/APPLICATION_ID = .*/APPLICATION_ID = \"{{ LMS_HOST|reverse_host|replace("-", "_") }}\"/g" constants.gradle
|
||||||
RUN ./gradlew assembleProd{{ "Release" if ANDROID_ENABLE_RELEASE_MODE else "Debuggable" }}
|
RUN ./gradlew assembleProd{{ "Release" if ANDROID_ENABLE_RELEASE_MODE else "Debug" }}
|
||||||
|
# ./gradlew assembleProdRelease
|
||||||
|
|
||||||
#### File server to serve apk file
|
#### File server to serve apk file
|
||||||
# https://hub.docker.com/_/caddy?tab=tags
|
# https://hub.docker.com/_/caddy?tab=tags
|
||||||
FROM docker.io/caddy:2.6.4-alpine as production
|
FROM docker.io/caddy:2.6.4-alpine as production
|
||||||
COPY --from=build /app/edx-app-android/OpenEdXMobile/build/outputs/apk/prod/{{ "release" if ANDROID_ENABLE_RELEASE_MODE else "debuggable" }}/edx-{{ "release" if ANDROID_ENABLE_RELEASE_MODE else "debuggable" }}-{{ ANDROID_APP_VERSION }}.apk /srv/app.apk
|
COPY --from=build /app/openedx-app-android/app/build/outputs/apk/prod/{{ "release" if ANDROID_ENABLE_RELEASE_MODE else "debug" }}/app-prod-{{ "release" if ANDROID_ENABLE_RELEASE_MODE else "debug" }}.apk /srv/app.apk
|
||||||
CMD caddy file-server --listen=:8000 --root=/srv
|
CMD caddy file-server --listen=:8000 --root=/srv
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
RELEASE_STORE_FILE=/app/edx-app-android/OpenEdXMobile/app.keystore
|
RELEASE_STORE_FILE=/app/openedx-app-android/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 }}
|
||||||
RELEASE_KEY_ALIAS={{ ANDROID_RELEASE_KEY_ALIAS }}
|
RELEASE_KEY_ALIAS={{ ANDROID_RELEASE_KEY_ALIAS }}
|
||||||
|
|||||||
@ -1,18 +1,83 @@
|
|||||||
# See docs: https://openedx.atlassian.net/wiki/spaces/LEARNER/pages/48792067/App+Configuration+Flags
|
# See docs: https://openedx.atlassian.net/wiki/spaces/LEARNER/pages/48792067/App+Configuration+Flags
|
||||||
API_HOST_URL: "{{ "https" if ENABLE_HTTPS else "http" }}://{{ LMS_HOST }}"
|
API_HOST_URL: "{{ "https" if ENABLE_HTTPS else "http" }}://{{ LMS_HOST }}"
|
||||||
|
APPLICATION_ID: 'org.openedx.app'
|
||||||
ENVIRONMENT_DISPLAY_NAME: "tutor"
|
ENVIRONMENT_DISPLAY_NAME: "tutor"
|
||||||
PLATFORM_NAME: "{{ PLATFORM_NAME }}"
|
URI_SCHEME: ''
|
||||||
PLATFORM_DESTINATION_NAME: "{{ LMS_HOST }}"
|
|
||||||
FEEDBACK_EMAIL_ADDRESS: "{{ CONTACT_EMAIL }}"
|
FEEDBACK_EMAIL_ADDRESS: "{{ CONTACT_EMAIL }}"
|
||||||
|
FAQ_URL: ''
|
||||||
OAUTH_CLIENT_ID: "android"
|
OAUTH_CLIENT_ID: "android"
|
||||||
|
|
||||||
COURSE_VIDEOS_ENABLED: true
|
# Keep empty to hide setting
|
||||||
CERTIFICATES_ENABLED: true
|
AGREEMENT_URLS:
|
||||||
DISCUSSIONS_ENABLED: true
|
PRIVACY_POLICY_URL: ''
|
||||||
|
COOKIE_POLICY_URL: ''
|
||||||
|
DATA_SELL_CONSENT_URL: ''
|
||||||
|
TOS_URL: ''
|
||||||
|
EULA_URL: ''
|
||||||
|
SUPPORTED_LANGUAGES: [ ] #en is default language
|
||||||
|
|
||||||
DISCOVERY:
|
DISCOVERY:
|
||||||
COURSE:
|
TYPE: 'native'
|
||||||
TYPE: native
|
WEBVIEW:
|
||||||
DOWNLOAD_TO_SD_CARD_ENABLED: true
|
BASE_URL: ''
|
||||||
NEW_LOGISTRATION_ENABLED: true
|
COURSE_DETAIL_TEMPLATE: ''
|
||||||
USER_PROFILES_ENABLED : true
|
PROGRAM_DETAIL_TEMPLATE: ''
|
||||||
VIDEO_TRANSCRIPT_ENABLED: true
|
|
||||||
|
PROGRAM:
|
||||||
|
TYPE: 'native'
|
||||||
|
WEBVIEW:
|
||||||
|
PROGRAM_URL: ''
|
||||||
|
PROGRAM_DETAIL_URL_TEMPLATE: ''
|
||||||
|
|
||||||
|
FIREBASE:
|
||||||
|
ENABLED: false
|
||||||
|
ANALYTICS_SOURCE: '' # segment | none
|
||||||
|
CLOUD_MESSAGING_ENABLED: false
|
||||||
|
PROJECT_NUMBER: ''
|
||||||
|
PROJECT_ID: ''
|
||||||
|
APPLICATION_ID: '' #App ID field from the Firebase console or mobilesdk_app_id from the google-services.json file.
|
||||||
|
API_KEY: ''
|
||||||
|
|
||||||
|
SEGMENT_IO:
|
||||||
|
ENABLED: false
|
||||||
|
SEGMENT_IO_WRITE_KEY: ''
|
||||||
|
|
||||||
|
BRAZE:
|
||||||
|
ENABLED: false
|
||||||
|
PUSH_NOTIFICATIONS_ENABLED: false
|
||||||
|
|
||||||
|
GOOGLE:
|
||||||
|
ENABLED: false
|
||||||
|
CLIENT_ID: ''
|
||||||
|
|
||||||
|
MICROSOFT:
|
||||||
|
ENABLED: false
|
||||||
|
CLIENT_ID: ''
|
||||||
|
PACKAGE_SIGNATURE: ''
|
||||||
|
|
||||||
|
FACEBOOK:
|
||||||
|
ENABLED: false
|
||||||
|
FACEBOOK_APP_ID: ''
|
||||||
|
CLIENT_TOKEN: ''
|
||||||
|
|
||||||
|
BRANCH:
|
||||||
|
ENABLED: false
|
||||||
|
KEY: ''
|
||||||
|
URI_SCHEME: ''
|
||||||
|
HOST: ''
|
||||||
|
ALTERNATE_HOST: ''
|
||||||
|
|
||||||
|
#Platform names
|
||||||
|
PLATFORM_NAME: "{{ PLATFORM_NAME }}"
|
||||||
|
PLATFORM_FULL_NAME: "{{ PLATFORM_NAME }}"
|
||||||
|
#App sourceSets dir
|
||||||
|
THEME_DIRECTORY: "openedx"
|
||||||
|
#tokenType enum accepts JWT and BEARER only
|
||||||
|
TOKEN_TYPE: "JWT"
|
||||||
|
#feature flag for activating What’s New feature
|
||||||
|
WHATS_NEW_ENABLED: false
|
||||||
|
#feature flag enable Social Login buttons
|
||||||
|
SOCIAL_AUTH_ENABLED: false
|
||||||
|
#Course navigation feature flags
|
||||||
|
COURSE_NESTED_LIST_ENABLED: false
|
||||||
|
COURSE_UNIT_PROGRESS_ENABLED: false
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user