mobileapp

(★ 845)

No description available.

File Explorer

  • .gitignore
  • .gitmodules
  • build.gradle.kts
  • CLAUDE.md
  • CONTRIBUTING.md
  • gradle.properties
  • gradlew
  • gradlew.bat
  • libpebblecommon.iosMain.iml
  • libpebblecommon.iosTest.iml
  • LICENSE
  • LICENSE-COMMERCIAL
  • README.md
  • settings.gradle.kts

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

dict

View Details ▼

Dictionary that uses the DICT protocol.

dict {{[-D|--dbs]}}

List available databases:

dict {{[-i|--info]}} {{database_name}}

Get information about a database:

dict {{[-d|--database]}} {{database_name}} {{word}}

Look up a word in a specific database:

🔍

git tag

View Details ▼

Create, list, delete, or verify tags.
A tag is a static reference to a commit.

git tag

List all tags:

git tag {{tag_name}}

Create a tag with the given name pointing to the current commit:

git tag {{tag_name}} {{commit}}

Create a tag with the given name pointing to a given commit:

🔍

expect

View Details ▼

Script executor that interacts with other programs that require user input.

expect {{path/to/file}}

Execute an expect script from a file:

expect -c "{{commands}}"

Execute a specified expect script:

expect -i

Enter an [i]nteractive REPL (use `exit` or `<Ctrl d>` to exit):

🔍

pod

View Details ▼

Dependency manager for Swift and Objective-C Cocoa projects.

pod init

Create a Podfile for the current project with the default contents:

pod install

Download and install all pods defined in the Podfile (that haven't been installed before):

pod list

List all available pods:

🔍

xcodebuild

View Details ▼

Build Xcode projects.

xcodebuild -workspace {{workspace_name.workspace}} -scheme {{scheme_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}

Build workspace:

xcodebuild -target {{target_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}

Build project:

xcodebuild -showsdks

Show SDKs:

// repository documentation