Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2903f1f
a11y: mark tyle as toggleable
PatrykMis Mar 18, 2023
c120ba7
Drop legacy and unsupported Android 9, small reformating
PatrykMis Nov 6, 2022
c7960f6
wip: refactor to BAR
PatrykMis Nov 23, 2022
fc4cbb1
Prevent 44100Hz for Opus (fixes #8)
PatrykMis Jul 28, 2023
9f8c69f
Bump dependencies
PatrykMis Jul 28, 2023
1402f16
Add Dependabot and CI configuration
PatrykMis Jul 28, 2023
16653b9
Disable multiplying bitrate by channel count
PatrykMis Jul 28, 2023
6d56766
Prevent very rare crash due to NullPointerException
PatrykMis Jul 30, 2023
4069b2c
Update Gradle to v8.5
PatrykMis Dec 10, 2023
2dfba24
build: refactor, bump compileSdk, buildToolsVersion and all dependencies
PatrykMis Dec 10, 2023
5dc759a
Target API 34 (Android 14)
PatrykMis Dec 10, 2023
7de1c6e
Bump dependencies
PatrykMis Dec 28, 2023
dcea6b9
Update Gradle Wrapper to v9.3.1
PatrykMis Feb 4, 2026
5852b3c
Update build and dependencies
PatrykMis Feb 4, 2026
3ec5a7c
Update README.md
PatrykMis Feb 5, 2026
3db9b03
Bump min and target Sdk
PatrykMis Feb 5, 2026
c41e33f
Add Thread.threadIdCompat (from upstream d567c12c780780186f4d1fd87ca8…
PatrykMis Feb 5, 2026
111ac28
Update workflows
PatrykMis Feb 5, 2026
0b4f4ba
Bump Kotlin to v2.3.10
PatrykMis Feb 5, 2026
a8d2a20
Suppress StartActivityAndCollapseDeprecated lint warning
PatrykMis Feb 5, 2026
f81057b
Move microphone recording out of TileService
PatrykMis Feb 5, 2026
0c3b1e7
Cleanup
PatrykMis Feb 6, 2026
8e7dfd9
Update .gitignore
PatrykMis Feb 9, 2026
da6f899
Remove migration of legacy notification channels
chenxiaolong Feb 1, 2026
27d1f04
Enable memory tagging extensions for ARMv9 devices
PatrykMis Feb 9, 2026
fbdc50b
Replace custom ChipGroupCentered with standard Material ChipGroup
PatrykMis Feb 10, 2026
1104937
Clean up obsolete proguard comments
PatrykMis Feb 10, 2026
420bebb
Reorganize source files into packages
PatrykMis Feb 10, 2026
ee1756c
Bump AndroidX Activity to v1.12.4
PatrykMis Feb 11, 2026
7ab3fcb
Use KTX String.toUri() instead of Uri.parse()
PatrykMis Feb 12, 2026
caa612e
replace Object() with Any() for idiomatic Kotlin style
PatrykMis Feb 12, 2026
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
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
target-branch: "master"
- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "daily"
target-branch: "master"
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build application

on: [pull_request, push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 25
cache: gradle
- name: Build with Gradle
run: ./gradlew build --no-daemon
37 changes: 0 additions & 37 deletions .github/workflows/release.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/validate-gradle-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Validate Gradle Wrapper

on: [pull_request, push]

jobs:
validation:
name: Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: gradle/wrapper-validation-action@v5
11 changes: 4 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
*.iml
.gradle
/.gradle
/.kotlin
/local.properties
/.idea/
/.idea
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
/keystore.properties
Loading
Loading