generated from touchlab/KaMPKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c319cc6
Showing
111 changed files
with
5,331 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# noinspection EditorConfigKeyCorrectness | ||
[*.{kt,kts}] | ||
ktlint_code_style = android_studio | ||
ktlint_function_naming_ignore_when_annotated_with=Composable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!--- [Issue-XYZ] Add issue number and title to Title above --> | ||
|
||
<!-- Add issue link --> | ||
Issue: https://github.com/touchlab/KaMPKit/issues/[issue number] | ||
|
||
## Summary | ||
<!--- Copy summary from issue link or write a shortened description of it --> | ||
|
||
## Fix | ||
<!-- What did you do to fix the issue? --> | ||
|
||
## Testing | ||
<!-- Remove any lines that were not performed --> | ||
- `./gradlew :app:build` | ||
- `./gradlew :shared:build` | ||
- `xcodebuild -workspace ios/KaMPKitiOS.xcworkspace -scheme KaMPKitiOS | ||
-sdk iphoneos -configuration Debug build -destination name="iPhone 8"` | ||
- manual testing | ||
|
||
<!-- If you made changes to the UI, please show us what it looks like now. --> | ||
### **Screenshot / Video of App working with the Changes** | ||
<img width="250" alt="fix in action" src="https://media.makeameme.org/created/yes-it-works.jpg"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: KaMPKit-Android | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
paths-ignore: | ||
- "**.md" | ||
- "*.png" | ||
- docs | ||
- ios | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: corretto | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4 | ||
|
||
- name: Build | ||
run: ./gradlew build | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: KaMPKit-iOS | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
paths-ignore: | ||
- "**.md" | ||
- "*.png" | ||
- docs | ||
- app | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: corretto | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v4 | ||
|
||
- name: Run tests | ||
run: ./gradlew :shared:iosX64Test | ||
|
||
- name: Build | ||
uses: sersoft-gmbh/xcodebuild-action@v1 | ||
with: | ||
project: ios/KaMPKitiOS.xcodeproj | ||
scheme: KaMPKitiOS | ||
destination: name=iPhone 8 | ||
sdk: iphoneos | ||
configuration: Debug | ||
action: build | ||
use-xcpretty: false | ||
build-settings: CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea | ||
.DS_Store | ||
/build | ||
/buildSrc/build | ||
/captures | ||
.externalNativeBuild | ||
.cxx | ||
*.xcuserstate | ||
*.xcbkptlist | ||
!/.idea/codeStyles/* | ||
!/.idea/inspectionProfiles/* | ||
.kotlin |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Contact Us | ||
|
||
KaMP Kit support can be found in the Kotlin Community Slack. Look for the `kampkit-support` channel. | ||
|
||
To join the Kotlin Community Slack, [request access here](http://slack.kotlinlang.org/) | ||
|
||
For direct assistance, please [reach out to Touchlab](https://go.touchlab.co/contactkamp) to discuss support options. | ||
|
||
If you find any bugs or issues in with project, you can create an issue in | ||
the [GitHub repository](https://github.com/touchlab/KaMPKit), but please don't mistake it with general KMP helpline. You | ||
can get answers for general questions in Slack. |
Oops, something went wrong.