Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ionic-team/trapeze
The mobile project configuration toolbox. Manage native iOS, Android, Ionic/Capacitor, React Native, and Flutter apps through a simple YAML format.
https://github.com/ionic-team/trapeze
android capacitor ios xcode
Last synced: 29 days ago
JSON representation
The mobile project configuration toolbox. Manage native iOS, Android, Ionic/Capacitor, React Native, and Flutter apps through a simple YAML format.
- Host: GitHub
- URL: https://github.com/ionic-team/trapeze
- Owner: ionic-team
- License: other
- Created: 2021-10-07T14:02:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-25T18:50:36.000Z (about 1 month ago)
- Last Synced: 2024-09-28T09:10:39.597Z (about 1 month ago)
- Topics: android, capacitor, ios, xcode
- Language: TypeScript
- Homepage: https://trapeze.dev
- Size: 21.9 MB
- Stars: 321
- Watchers: 11
- Forks: 40
- Open Issues: 49
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
π€ΈββοΈ Easy automated project configuration for iOS, Android, Capacitor, React Native, Flutter, and more π€ΈββοΈ---
Trapeze is a mobile project configuration toolbox for native iOS and Android project management. From a simple YAML format, Trapeze makes it easy to automate the configuration of native mobile iOS and Android projects, and supports traditional native, [Ionic](https://ionicframework.com/), [Capacitor](https://capacitorjs.com/), React Native, Flutter, and .NET MAUI. The long-term goal of Trapeze is to enable fully immutable native mobile projects.
Trapeze works by automating the modification of pbxproj, plist, XML, Gradle, JSON, resource, properties, and other files in iOS and Android app projects. It features a configuration-driven tool that takes a YAML file with iOS and Android project modifications and performs those modifications from the command line interactively.
For example, modifying your project is as easy as writing a configuration file:
```yaml
platforms:
ios:
targets:
App:
bundleId: $BUNDLE_ID
version: $VERSIONandroid:
packageName: com.example.app
versionName: $VERSION_NAME
versionCode: $VERSION_CODE
```Each one of these variables can be supplied from the environment or interactively when running the command. There are many more configuration options available.
A Project API is also available for writing custom JavaScript/TypeScript project modification scripts for full control. The configuration tool uses this API under the hood.
See [trapeze.dev](https://trapeze.dev) for full documentation and to get started using Trapeze.
__Note: this project was formerly known as `capacitor-configure` but has now been expanded to support other mobile frameworks and renamed to Trapeze as of June 2022__