Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kpgalligan committed Oct 13, 2021
0 parents commit 3b111e8
Show file tree
Hide file tree
Showing 147 changed files with 6,404 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/pull_request_template.md
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">
31 changes: 31 additions & 0 deletions .github/workflows/KaMPKit-Android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: KaMPKit-Android

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
paths-ignore:
- "**.md"
- "*.png"
- docs
- ios

jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2

- uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: "11"

- name: Build
run: ./gradlew :app:build



32 changes: 32 additions & 0 deletions .github/workflows/KaMPKit-Shared.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: KaMPKit-Shared

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
paths-ignore:
- "**.md"
- "*.png"
- docs
- ios
- app

jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2

- uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: "11"

- name: Build
run: ./gradlew :shared:build



38 changes: 38 additions & 0 deletions .github/workflows/KaMPKit-iOS.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
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@v2

- uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: "11"

- name: Build
uses: sersoft-gmbh/xcodebuild-action@v1
with:
workspace: ios/KaMPKitiOS.xcworkspace
scheme: KaMPKitiOS
destination: name=iPhone 8
sdk: iphoneos
configuration: Debug
action: build



14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
*.iml
.gradle
/local.properties
/.idea
.DS_Store
/build
/buildSrc/build
/captures
.externalNativeBuild
.cxx
*.xcuserstate
*.xcbkptlist
!/.idea/codeStyles/*
!/.idea/inspectionProfiles/*
138 changes: 138 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/inspectionProfiles/ktlint.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions CONTACT_US.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 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.
Loading

0 comments on commit 3b111e8

Please sign in to comment.