https://github.com/droibit/liquid-glass-app-icon-sample
https://github.com/droibit/liquid-glass-app-icon-sample
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/droibit/liquid-glass-app-icon-sample
- Owner: droibit
- License: mit
- Created: 2025-11-09T09:54:30.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-11-09T11:37:14.000Z (9 months ago)
- Last Synced: 2025-11-09T13:21:22.453Z (9 months ago)
- Language: Swift
- Size: 16.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UIKit Sample App Template
Template repository for UIKit sample app with SPM generated by [XcodeGen](https://github.com/yonaskolb/XcodeGen).
## Requirements
- Xcode 15+.
- [Mint](https://github.com/yonaskolb/Mint#installing) installed.
## Generate a sample app
### 1. Update project name
Begin by updating the project name in the Makefile.
- Replace `YOUR_PROJECT_NAME` with the desired name of your project.
```diff
-PROJECT_NAME := SampleApp
+PROJECT_NAME := YOUR_PROJECT_NAME
```
### (Optional) Update project git directory path
If the sample app project is located in a different directory than the git directory,
update the `PROJECT_GIT_DIR` variable in the Makefile to the relative path of the git directory.
```diff
-PROJECT_GIT_DIR := .
+PROJECT_GIT_DIR := ..
```
### 2. Generate the project
Run the following commands to generate the project for the sample app:
```bash
make bootstrap
make gen-project
make open-project
```