IceCubesApp è un'applicazione open source per accedere al social network decentralizzato Mastodon! È costruita interamente in SwiftUI, il che la rende veloce, leggera e facile da usare. È possibile connettersi a qualsiasi istanza di Mastodon e sfogliare la propria timeline, interagire con altri utenti e pubblicare aggiornamenti e media. https://mastodon.it/it/Quale-app-mastodon-utilizzare
Go to file
2023-12-17 07:34:01 +01:00
.github
ci_scripts
IceCubesActionExtension
IceCubesApp de: Update Localizable.xcstrings (#1743) 2023-12-17 07:34:01 +01:00
IceCubesApp.xcodeproj Bump version to 1.9.18 2023-12-17 07:28:59 +01:00
IceCubesNotifications
IceCubesShareExtension
Images
Packages Update EmojiText to 3.2.0 (#1751) 2023-12-17 07:28:18 +01:00
.gitignore
.swiftformat
IceCubesApp-release.xcconfig
IceCubesApp.xcconfig.template
LICENSE
PRIVACY.MD
README.md Grammar (#1634) 2023-11-01 18:52:00 +01:00
TERMS.MD

IceCubesApp

Download on the App Store

IceCubesApp is an open-source application for accessing the decentralized social network Mastodon! It's built entirely in SwiftUI, making it fast, lightweight, and easy to use.

You can connect to any Mastodon instance, browse your timeline, interact with other users, and post updates and media.

The project is split into different Swift Packages to make managing and maintaining the codebase easier. Each package focuses on a specific application aspect, such as the UI, network communication, or data models. This modular approach allows for easier collaboration and ensures the code is organized and easily understood.

It's a great starting point for learning SwiftUI. The app covers many of the basic concepts of SwiftUI, such as building layouts, working with data, and handling user interaction. By exploring the code, you can understand how to use SwiftUI in your daily life. Plus, the open-source nature of IceCubesApp means you can see how real-world applications are built and get a sense of best practices for using SwiftUI.

The architecture is straightforward MVVM for most parts, there is no redux on this one ;)

Thanks!

Icon

Building the project

To build the project, you need to clone the repo and create a copy of the included .xcconfig file to create your config before you can compile the project. Otherwise, you will get an error.

Here are the steps:

  1. Clone the repo
  2. In the same folder that contains the IceCubesApp.xcconfig.template, run this command:
cp IceCubesApp.xcconfig.template IceCubesApp.xcconfig
  1. Fill in the DEVELOPMENT_TEAM and BUNDLE_ID_PREFIX values. The first should have your Apple Team ID (which you can find by logging into the Apple Developer Portal). The latter is your domain in reverse notation or whatever you use as the prefix for your projects.
  2. Save your changes, and then you should be able to compile the project without any issues.