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
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

steps:
- name: Analyze with SonarCloud
uses: SonarSource/sonarqube-scan-action@v8.1.0
uses: SonarSource/sonarqube-scan-action@v8.2.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on Sonarcloud.io, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sourcepoint_unified_cmp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fvmrc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: get fvmrc
id: fvmrc
uses: ActionsTools/read-json-action@v1.0.5
Expand Down Expand Up @@ -74,12 +74,12 @@ jobs:
with:
distribution: "temurin"
java-version: "11"
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: subosito/flutter-action@v2

- name: AVD Cache
uses: actions/cache@v5
uses: actions/cache@v6
id: avd-cache
with:
path: |
Expand All @@ -106,7 +106,7 @@ jobs:
working-directory: packages/sourcepoint_unified_cmp/example

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: subosito/flutter-action@v2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sourcepoint_unified_cmp_android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fvmrc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: get fvmrc
id: fvmrc
uses: ActionsTools/read-json-action@v1.0.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fvmrc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: get fvmrc
id: fvmrc
uses: ActionsTools/read-json-action@v1.0.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fvmrc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: get fvmrc
id: fvmrc
uses: ActionsTools/read-json-action@v1.0.5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sourcepoint_unified_cmp_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fvmrc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: get fvmrc
id: fvmrc
uses: ActionsTools/read-json-action@v1.0.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fvmrc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: get fvmrc
id: fvmrc
uses: ActionsTools/read-json-action@v1.0.5
Expand Down
6 changes: 3 additions & 3 deletions packages/sourcepoint_unified_cmp_android/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ group 'de.thekorn.sourcepoint.unified.cmp'
version '1.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '2.2.21'
ext.kotlin_version = '2.4.10'
repositories {
google()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:8.13.2'
classpath 'com.android.tools.build:gradle:9.3.0'
}
}

Expand Down Expand Up @@ -50,5 +50,5 @@ kotlin {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.sourcepoint.cmplibrary:cmplibrary:7.15.13'
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.11.0"
}
Loading