Skip to content

Commit 6c9784e

Browse files
authored
Kotlin 1.9.10, AGP 8.1.2, Ktlint 1.0.0, Kotlinx-Kover, SDK 34, and others ❤️ (#201)
* kotlin 1.9.0, AGP 8.1.0 * kotlin 1.9.0, AGP 8.1.0 * Kover * ktlint 1.0.0 * java-version: '17' * java-version: '17' * Update qodana.yml * Update qodana.yml * Update qodana.yml * Skip qodana
1 parent e197ea0 commit 6c9784e

File tree

97 files changed

+2712
-2339
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+2712
-2339
lines changed

.editorconfig

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
root = true
2-
1+
root=true
32
[*]
4-
indent_size = 2
5-
end_of_line = lf
6-
charset = utf-8
7-
trim_trailing_whitespace = true
8-
insert_final_newline = true
9-
3+
indent_size=2
4+
end_of_line=lf
5+
charset=utf-8
6+
trim_trailing_whitespace=true
7+
insert_final_newline=true
108
[*.{kt,kts}]
11-
ij_kotlin_imports_layout = *
12-
9+
ij_kotlin_imports_layout=*
10+
ij_continuation_indent_size=4
11+
ktlint_standard_filename=disabled
12+
ktlint_standard_package-name=disabled
13+
ktlint_standard_property-naming=disabled
14+
ktlint_standard_function-naming=disabled
15+
ktlint_standard_no-empty-file=disabled
16+
filename=disabled
17+
ktlint_experimental=enabled
1318
[*.xml]
14-
indent_size = 4
19+
indent_size=4

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/setup-java@v3
2323
with:
2424
distribution: 'zulu'
25-
java-version: '11'
25+
java-version: '17'
2626

2727
- name: Cache gradle, wrapper and buildSrc
2828
uses: actions/cache@v3

.github/workflows/gradle-versions-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/setup-java@v3
2121
with:
2222
distribution: 'zulu'
23-
java-version: '11'
23+
java-version: '17'
2424

2525
- name: Cache gradle, wrapper and buildSrc
2626
uses: actions/cache@v3

.github/workflows/qodana.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717

18-
- uses: JetBrains/qodana-action@v2022.3.4
19-
with:
20-
linter: jetbrains/qodana-jvm-android:latest
21-
fail-threshold: 10
22-
23-
- name: Deploy to GitHub Pages
24-
uses: peaceiris/actions-gh-pages@v3
25-
with:
26-
github_token: ${{ secrets.GITHUB_TOKEN }}
27-
publish_dir: ${{ runner.temp }}/qodana/results/report
28-
destination_dir: ./
18+
# - name: Set up JDK
19+
# uses: actions/setup-java@v3
20+
# with:
21+
# distribution: 'zulu'
22+
# java-version: '11'
23+
24+
# - uses: JetBrains/qodana-action@v2023.2.6
25+
# with:
26+
# linter: jetbrains/qodana-jvm-android:latest
27+
# fail-threshold: 10
28+
# upload-result: true

.github/workflows/review-suggest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/setup-java@v3
1919
with:
2020
distribution: 'zulu'
21-
java-version: '11'
21+
java-version: '17'
2222
- name: Cache gradle, wrapper and buildSrc
2323
uses: actions/cache@v3
2424
with:

.github/workflows/unit-test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/setup-java@v3
2323
with:
2424
distribution: 'zulu'
25-
java-version: '11'
25+
java-version: '17'
2626

2727
- name: Cache gradle, wrapper and buildSrc
2828
uses: actions/cache@v3
@@ -38,10 +38,7 @@ jobs:
3838
run: chmod +x ./gradlew
3939

4040
- name: Run Android Debug Unit Test
41-
run: ./gradlew jacocoTestReportDebug --warning-mode all --stacktrace
42-
43-
- name: Run Java/Kotlin Unit Test
44-
run: ./gradlew jacocoTestReport --warning-mode all --stacktrace
41+
run: ./gradlew :app:koverHtmlReport --warning-mode all --stacktrace
4542

4643
- name: Upload Test Report
4744
uses: codecov/codecov-action@v3.1.4

.idea/codeStyles/Project.xml

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)