Skip to content

Commit e6a060b

Browse files
committed
modernize build
1 parent 60a4ca5 commit e6a060b

33 files changed

+1147
-1419
lines changed

.editorconfig

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
root = true
22

3-
# Change these settings to your own preference
43
[*]
54
indent_style = space
6-
indent_size = 4
5+
indent_size = 2
76

8-
# We recommend you to keep these unchanged
97
end_of_line = lf
108
charset = utf-8
119
trim_trailing_whitespace = true
1210
insert_final_newline = true
13-
14-
[*.md]
15-
trim_trailing_whitespace = false
11+
ij_kotlin_allow_trailing_comma = true
12+
ij_kotlin_allow_trailing_comma_on_call_site = true

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text eol=lf
3+
*.bat eol=crlf
4+
*.jar binary
5+
*.png binary
6+
*.webp binary
7+
*.gif binary
File renamed without changes.

.github /workflows/build.yml renamed to .github/workflows/build.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,14 @@ on:
99

1010
env:
1111
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
12+
JAVA_VERSION: 20 # can't use Java 21 yet due to mockito issues
13+
ANDROID_API_LEVEL: 34
1214

1315
jobs:
1416
android:
1517
name: Android API ${{ matrix.api-level }} / JDK ${{ matrix.java-version }}
1618
runs-on: ubuntu-latest
1719

18-
strategy:
19-
fail-fast: false
20-
matrix:
21-
api-level:
22-
- 33
23-
java-version:
24-
- 19
25-
2620
steps:
2721
- name: Checkout Project
2822
uses: actions/[email protected]

0 commit comments

Comments
 (0)