Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and verify cahier

Check warning on line 1 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

verify.yml:1: overly broad permissions: default permissions used due to no permissions: block

on:
workflow_dispatch:
Expand All @@ -8,32 +8,32 @@
branches: [ main ]

jobs:
build:

Check warning on line 11 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

verify.yml:11: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 15 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 15 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

verify.yml:15: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Set Up JDK
uses: actions/setup-java@v5

Check failure on line 18 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 18 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

verify.yml:18: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
uses: gradle/actions/setup-gradle@v6

Check failure on line 25 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 25 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

verify.yml:25: unpinned action reference: action is not pinned to a hash (required by blanket policy)

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

- name: Build debug app
run: ./gradlew :app:assembleDebug
test:

Check warning on line 32 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

verify.yml:32: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 36 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 36 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

verify.yml:36: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Enable KVM
run: |
Expand All @@ -45,7 +45,7 @@
run: ./gradlew :app:testDebugUnitTest

- name: Run Android tests on Large Desktop Emulator
uses: reactivecircus/android-emulator-runner@v2

Check failure on line 48 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 48 in .github/workflows/verify.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

verify.yml:48: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
api-level: 33
device: desktop_large
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
alias(libs.plugins.androidApplication)
alias(libs.plugins.ksp)
alias(libs.plugins.roborazzi)
id("org.jetbrains.kotlin.plugin.compose") version "2.3.20"
id("org.jetbrains.kotlin.plugin.compose") version "2.4.10"
id("kotlin-parcelize")
kotlin("plugin.serialization")
id("com.google.dagger.hilt.android")
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ plugins {
alias(libs.plugins.androidApplication) apply false
alias(libs.plugins.androidLibrary) apply false
alias(libs.plugins.ksp) apply false
kotlin("plugin.serialization") version "2.3.20"
id("com.google.dagger.hilt.android") version "2.59.2" apply false
kotlin("plugin.serialization") version "2.4.10"
id("com.google.dagger.hilt.android") version "2.60.1" apply false
}
44 changes: 22 additions & 22 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
[versions]
agp = "9.1.0"
appcompatV7 = "1.7.1"
coilCompose = "3.4.0"
foundation = "1.10.5"
hiltAndroid = "2.59.2"
hiltNavigationCompose = "1.3.0"
ink = "1.1.0-alpha06"
kotlin = "2.3.20"
coreKtx = "1.18.0"
agp = "9.3.1"
appcompatV7 = "1.8.0"
coilCompose = "3.5.0"
foundation = "1.12.0"
hiltAndroid = "2.60.1"
hiltNavigationCompose = "1.4.0"
ink = "1.1.0-alpha07"
kotlin = "2.4.10"
coreKtx = "1.19.0"
junit = "4.13.2"
junitVersion = "1.3.0"
espressoCore = "3.7.0"
kotlinxSerializationJson = "1.10.0"
lifecycleRuntimeKtx = "2.10.0"
kotlinxSerializationJson = "1.11.0"
lifecycleRuntimeKtx = "2.11.0"
activityCompose = "1.13.0"
composeBom = "2026.03.00"
lifecycleViewmodelCompose = "2.10.0"
lifecycleRuntimeCompose = "2.10.0"
adaptiveNavigationAndroid = "1.2.0"
navigationRuntimeKtx = "2.9.7"
navigationCompose = "2.9.7"
protobufJavalite = "4.34.0"
composeBom = "2026.08.00"
lifecycleViewmodelCompose = "2.11.0"
lifecycleRuntimeCompose = "2.11.0"
adaptiveNavigationAndroid = "1.3.0"
navigationRuntimeKtx = "2.9.8"
navigationCompose = "2.9.8"
protobufJavalite = "4.35.1"
composeColorPickerAndroid = "0.7.0"
roomKtx = "2.8.4"
roomRuntime = "2.8.4"
windowCore = "1.5.1"
ksp = "2.3.6"
ksp = "2.3.11"
roomCompiler = "2.8.4"
material3AdaptiveNavigationSuiteAndroidVersion = "1.4.0"
inputMotionprediction = "1.0.0"

#Tests
mockito = "5.23.0"
mockitoKotlin = "6.2.3"
mockitoKotlin = "6.3.0"
coreTesting = "2.2.0"
kotlinxCoroutinesTest = "1.10.2"
kotlinxCoroutinesTest = "1.11.0"
turbine = "1.2.1"
material3WindowSizeClass = "1.4.0"
robolectric = "4.16.1"
roborazzi = "1.59.0"
roborazzi = "1.71.0"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions ink-proto/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("java-library")
id("com.google.protobuf") version "0.9.6"
id("com.google.protobuf") version "0.10.0"
}

java {
Expand All @@ -15,7 +15,7 @@ dependencies {

protobuf {
protoc {
artifact = "com.google.protobuf:protoc:4.34.0"
artifact = "com.google.protobuf:protoc:4.35.1"
}

generateProtoTasks {
Expand Down
Loading