Skip to content
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 7 additions & 5 deletions .github/workflows/android-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'recursive' # Or 'true' for top-level only

- name: Set up JDK 17
uses: actions/setup-java@v4
- name: Set up JDK 24
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '17'
java-version: '24'

# Cache Gradle dependencies to speed up subsequent builds
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v6

- name: Make Gradlew Executable
run: chmod +x ./gradlew
Expand Down
18 changes: 8 additions & 10 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,21 @@ name: Android CI

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

defaults:
run:
working-directory: ./LatinReader
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: set up JDK 23
uses: actions/setup-java@v4
- name: Checkout Code
uses: actions/checkout@v6
with:
submodules: 'recursive' # Or 'true' for top-level only
- name: Set up JDK 24
uses: actions/setup-java@v5
with:
java-version: '24'
distribution: 'temurin'
Expand Down
19 changes: 17 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
.DS_Store
.idea/
# Gradle
.gradle/
/build/

# Local configuration
local.properties

# IntelliJ/Android Studio
*.iml
.idea/
/captures/
.externalNativeBuild/
.cxx/
*.hprof

# macOS
.DS_Store
Binary file added Images/feature_graphic_1780010384336.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/latin-reader-3.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
296 changes: 296 additions & 0 deletions Images/latin_reader_feature_1024x500.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/launcher-3.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 0 additions & 13 deletions LatinReader/.gitignore

This file was deleted.

Loading