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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ jobs:

# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
# - name: Autobuild
# uses: github/codeql-action/autobuild@v2
- name: Autobuild
uses: github/codeql-action/autobuild@v4

- name: Build
run: ./gradlew --no-daemon --configuration-cache --build-cache lib:assemble
#- name: Build
# run: ./gradlew --no-daemon --configuration-cache lib:assemble

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[versions]
agp = "8.13.1"
androidx-activityCompose = "1.12.0"
agp = "8.13.2"
androidx-activityCompose = "1.12.2"
androidx-appcompat = "1.7.1"
androidx-core = "1.17.0"
androidx-lifecycle = "2.10.0"
androidx-test-core = "1.7.0"
androidx-test-runner = "1.7.0"
androidx-test-rules = "1.7.0"
conscrypt = "2.5.3"
compose-bom = "2025.11.01"
compose-bom = "2025.12.01"
dokka = "2.1.0"
junit = "4.13.2"
kotlin = "2.2.21"
mockk = "1.14.6"
mockk = "1.14.7"
okhttp = "5.3.2"

[libraries]
Expand Down
8 changes: 7 additions & 1 deletion lib/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET"/>

<!--
Since Mockk 1.14.7 it's required to use minSdk 26. We use 23 (because DAVx5 is still on 24), so override for tests.
-->
<uses-sdk tools:overrideLibrary="io.mockk.android,io.mockk.proxy.android" />

</manifest>