Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonnyl/packman
A mobile application made for managing GitLab CI/CD jobs, demonstrating how to implement some latest technologies in mobile software development.
https://github.com/tonnyl/packman
android compose compose-jb gitlab gitlab-ci graphql ios jetpack jetpack-compose kmm kmp kotlin kotlin-multiplatform kotlin-multiplatform-mobile ktor multiplatform-compose realm realm-kotlin spotless
Last synced: 5 days ago
JSON representation
A mobile application made for managing GitLab CI/CD jobs, demonstrating how to implement some latest technologies in mobile software development.
- Host: GitHub
- URL: https://github.com/tonnyl/packman
- Owner: TonnyL
- License: mit
- Created: 2022-11-13T05:41:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-14T17:45:48.000Z (10 months ago)
- Last Synced: 2024-03-04T14:31:48.059Z (8 months ago)
- Topics: android, compose, compose-jb, gitlab, gitlab-ci, graphql, ios, jetpack, jetpack-compose, kmm, kmp, kotlin, kotlin-multiplatform, kotlin-multiplatform-mobile, ktor, multiplatform-compose, realm, realm-kotlin, spotless
- Language: Kotlin
- Homepage:
- Size: 601 KB
- Stars: 16
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Packman
[![Build](https://github.com/TonnyL/Packman/workflows/build/badge.svg)](https://github.com/TonnyL/Packman/actions?query=workflow%3Abuild)
A mobile application made for managing GitLab CI/CD jobs, demonstrating how to implement some latest technologies in mobile software development.
## Feature
+ 100% Kotlin;
+ The whole UI is written with [Compose Multiplatform](https://github.com/JetBrains/compose-jb/);
+ The business logic is shared between Android and iOS (with [Kotlin Multiplatform (Mobile)](https://kotlinlang.org/docs/multiplatform.html)).## Build Instructions
### Prerequisites
+ Android Studio Electric Eel 2022.1.1 Patch 1 or higher;
+ Xcode 14.2 or higher(if you want to build iOS app);
+ JDK 17 or higher;
+ Kotlin 1.8.0 or higher;
+ [Kotlin Multiplatform Mobile plugin](https://plugins.jetbrains.com/plugin/14936-kotlin-multiplatform-mobile) installed in Android Studio(optional).### API Keys and Configurations
Put them into `local.properties` file:```java
ACCESS_TOKEN=Your access token
TRIGGER_PIPELINE_ACCESS_TOKEN=Your project level token
PROJECT_PATH=Path of your project
PROJECT_ID=Your project id
GRAPH_QL_SERVER_URL=https://your.gitlab.server.address/api/graphql
REST_SERVER_URL=https://your.gitlab.server.address/api/v4STORE_FILE_PATH=Path to store file
STORE_PASSWORD=Password
KEY_ALIAS=Key alias
KEY_PASSWORD=Key password
```### Build
```shell
./gradlew build
```## License
Packman is under an MIT license. See the [LICENSE](LICENSE) file for more information.