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
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,6 @@ trim_trailing_whitespace = false

[**/test/**.kt]
max_line_length=off

[**/build/**/*.kt]
ktlint = disabled
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ark-drop-release
path: ./app/build/outputs/apk/release/ark-drop-release.apk
path: ./composeApp/build/outputs/apk/release/composeApp-release.apk

lint:
environment: Development
Expand All @@ -82,7 +82,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: lint-results
path: ./app/build/reports/*.html
path: ./composeApp/build/reports/*.html

ktlint:
environment: Development
Expand Down
27 changes: 16 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
# JNILibs
/app/src/main/jniLibs

# Development Setup
/build
/.idea
/.kotlin
/.gradle
/captures
*.iml
.kotlin
.gradle
**/build/
xcuserdata
!src/**/build/
local.properties
.cxx
.idea
.DS_Store
captures
.externalNativeBuild

.cxx
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcodeproj/project.xcworkspace/
!*.xcworkspace/contents.xcworkspacedata
**/xcshareddata/WorkspaceSettings.xcsettings
node_modules/
1 change: 0 additions & 1 deletion app/.gitignore

This file was deleted.

195 changes: 0 additions & 195 deletions app/build.gradle.kts

This file was deleted.

135 changes: 0 additions & 135 deletions app/proguard-rules.pro

This file was deleted.

Loading