Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/build-basic-history-api-kotlin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Workflow name
name: Build BasicHistoryApiKotlin

on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set Up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Make gradlew executable
run: chmod +x ./gradlew
working-directory: ./BasicHistoryApiKotlin

- name: Build BasicHistoryApiKotlin app
working-directory: ./BasicHistoryApiKotlin
run: ./gradlew app:assembleDebug
33 changes: 33 additions & 0 deletions .github/workflows/build-basic-history-sessions-kotlin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Workflow name
name: Build BasicHistorySessionsKotlin

on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set Up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Make gradlew executable
run: chmod +x ./gradlew
working-directory: ./BasicHistorySessionsKotlin

- name: Build BasicHistorySessionsKotlin app
working-directory: ./BasicHistorySessionsKotlin
run: ./gradlew app:assembleDebug
33 changes: 33 additions & 0 deletions .github/workflows/build-basic-recording-api-kotlin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Workflow name
name: Build BasicRecordingApiKotlin

on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set Up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Make gradlew executable
run: chmod +x ./gradlew
working-directory: ./BasicRecordingApiKotlin

- name: Build BasicRecordingApiKotlin app
working-directory: ./BasicRecordingApiKotlin
run: ./gradlew app:assembleDebug
Binary file modified BasicHistoryApiKotlin/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Mon Oct 21 09:35:15 PDT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
94 changes: 59 additions & 35 deletions BasicHistoryApiKotlin/gradlew

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

30 changes: 20 additions & 10 deletions BasicHistoryApiKotlin/gradlew.bat

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

2 changes: 1 addition & 1 deletion BasicHistorySessionsKotlin/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 29
Expand Down
Binary file modified BasicHistorySessionsKotlin/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Mon Oct 21 09:27:08 PDT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
Loading