Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add example of creating interop between Realm Kotlin and a Java project. #42

Merged
merged 17 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Attempt to fix CI
  • Loading branch information
cmelchior committed Dec 14, 2023
commit 1afb965aa1669848b79795a12625bf84c5a50870
60 changes: 30 additions & 30 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,41 +19,41 @@ jobs:
java-version: '17'
distribution: 'adopt'

- name: JVM Console
working-directory: ./JVMConsole
run: |
chmod +x gradlew
./gradlew jar
# - name: JVM Console
# working-directory: ./JVMConsole
# run: |
# chmod +x gradlew
# ./gradlew jar

- name: Building App Services Usage Samples
working-directory: ./AppServicesUsageSamples
run: |
chmod +x gradlew
./gradlew assemble
# - name: Building App Services Usage Samples
# working-directory: ./AppServicesUsageSamples
# run: |
# chmod +x gradlew
# ./gradlew assemble

- name: Building Intro [Debug]
working-directory: ./Intro
run: |
chmod +x gradlew
./gradlew buildDebug
# - name: Building Intro [Debug]
# working-directory: ./Intro
# run: |
# chmod +x gradlew
# ./gradlew buildDebug

- name: Building Bookshelf [Debug]
working-directory: ./Bookshelf
run: |
chmod +x gradlew
./gradlew buildDebug
# - name: Building Bookshelf [Debug]
# working-directory: ./Bookshelf
# run: |
# chmod +x gradlew
# ./gradlew buildDebug

- name: Building KMP Demo
working-directory: ./MultiplatformDemo
run: |
chmod +x gradlew
./gradlew assemble
# - name: Building KMP Demo
# working-directory: ./MultiplatformDemo
# run: |
# chmod +x gradlew
# ./gradlew assemble

- name: Building KMP Sync Demo
working-directory: ./MultiplatformDemoWithSync
run: |
chmod +x gradlew
./gradlew assemble
# - name: Building KMP Sync Demo
# working-directory: ./MultiplatformDemoWithSync
# run: |
# chmod +x gradlew
# ./gradlew assemble

- name: Building Java-Kotlin-Maven Interop Sample
working-directory: ./JavaKotlinMavenInterop
Expand Down
Empty file modified JavaKotlinMavenInterop/gradlew
100755 → 100644
Empty file.
Loading