Được TopGit lập chỉ mục từ metadata GitHub: ArtSabintsev/Siren có 4.3k sao, viết chủ yếu bằng Swift. Notify users when a new version of your app is available and prompt them to upgrade.
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
Notify users when a new version of your app is available and prompt them to upgrade.
Important Information
I stopped being a proactive iOS engineer in 2021. For the time being, I will keep this library maintained for the community, but I will not be proactively adding features.
Table of Contents
Meta
About
Features
Screenshots
Ports
Installation and Integration
Installation Instructions
Implementation Examples
Device-Specific Checks
Localization
Device Compatibility
Testing
Testing Siren Locally
Words of Caution
App Submission
App Store Review
Phased Releases
Attribution
Special Thanks
Creator
Meta
About
Siren checks a user's currently installed version of your iOS app against the version that is currently available in the App Store.
If a new version is available, a language localized alert can be presented to the user informing them of the newer version, and giving them the option to update the application. Alternatively, Siren can notify your app through alternative means, such as a custom user interface.
Siren is built to work with the Semantic Versioning system.
Canonical Semantic Versioning uses a three number versioning system (e.g., 1.0.0)
Siren also supports two-number versioning (e.g., 1.0) and four-number versioning (e.g., 1.0.0.0)
Features
Current Features
Compatible with iOS 17+ and tvOS 17+
Swift Package Manager Support (see Installation Instructions)
Three Types of Alerts (see Screenshots)
Highly Customizable Presentation Rules (see Implementation Examples)
Localized for 40+ Languages (see Localization)
Device Compatibility Check (see Device Compatibility)
Screenshots
The left picture forces the user to update the app.
The center picture gives the user the option to update the app.
The right picture gives the user the option to skip the current update.
These options are controlled by the Rules.AlertType enum.
Ports
Objective-C (iOS)
Harpy
Siren was ported from Harpy, as Siren and Harpy are maintained by the same developer.
As of December 2018, Harpy has been deprecated in favor of Siren.
Java (Android)
Egghead Games' Siren library
The Siren Swift library inspired the Java library.
React Native (iOS)
Gant Laborde's Siren library
The Siren Swift library inspired the React Native library.
Implementing Siren is as easy as adding two lines of code to your app in eitherAppDelegate.swift or SceneDelegate.swift:
AppDelegate.swift Example
import Siren // Line 1
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
window?.makeKeyAndVisible()
Siren.shared.wail() // Line 2
return true
}
}
SceneDelegate.swift Example
import Siren // Line 1
import UIKit
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
var window: UIWindow?
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
window?.makeKeyAndVisible()
Siren.shared.wail() // Line 2
return true
}
}
Siren also has plenty of customization options. All examples can be found in the Example Project's AppDelegate file. Uncomment the example you'd like to test.
Device-Specific Checks
Localization
Siren is localized for the following languages:
Arabic, Armenian, Basque, Chinese (Simplified and Traditional), Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, German, Greek, Hebrew, Hungarian, Indonesian, Italian, Japanese, Korean, Latvian, Lithuanian, Malay, Norwegian (Bokmål), Persian (Afghanistan, Iran, Persian), Polish, Portuguese (Brazil and Portugal), Romanian, Russian, Serbian (Cyrillic and Latin), Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Vietnamese
If your user's device is set to one of the supported locales, an update message will appear in that language. If a locale is not supported, than the message will appear in English.
You may want the update dialog to always appear in a certain language, ignoring the user's device-specific setting. You can enable it like so:
// In this example, we force the `Russian` language.
Siren.shared.presentationManager = PresentationManager(forceLanguageLocalization: .russian)
Device Compatibility
If an app update is available, Siren checks to make sure that the version of iOS on the user's device is compatible with the one that is required by the app update. For example, if a user has iOS 11 installed on their device, but the app update requires iOS 12, an alert will not be shown. This takes care of the false positive case regarding app updating.
Testing
Testing Siren Locally
Temporarily change the version string in Xcode (within the .xcodeproj file) to an older version than the one that's currently available in the App Store. Afterwards, build and run your app, and you should see the alert.
If you currently don't have an app in the store, change your bundleID to one that is already in the store. In the sample app packaged with this library, we use Facebook's Bundle ID: com.facebook.Facebook.
Words of Caution
Occasionally, the iTunes JSON will update faster than the App Store CDN, meaning the JSON may state that the new version of the app has been released, while no new binary is made available for download via the App Store. It is for this reason that Siren will, by default, wait 1 day (24 hours) after the JSON has been updated to prompt the user to update. To change the default setting, please modify the value of showAlertAfterCurrentVersionHasBeenReleasedForDays.
App Submission
App Store Review
The App Store reviewer will not see the alert. The version in the App Store will always be older than the version being reviewed.
Phased Releases
In 2017, Apple announced the ability to rollout app updates gradually (a.k.a. Phased Releases). Siren will continue to work as it has in the past, presenting an update modal to all users. If you opt-in to a phased rollout for a specific version, you have a few choices:
You can leave Siren configured as normal. Phased rollout will continue to auto-update apps. Since all users can still manually update your app directly from the App Store, Siren will ignore the phased rollout and will prompt users to update.
You can set showAlertAfterCurrentVersionHasBeenReleasedForDays to 7, and Siren will not prompt any users until the latest version is 7 days old, after the phased rollout is complete.
You can remotely disable Siren until the rollout is done using your own API / backend logic.
Attribution
Special Thanks
A massive shout-out and thank you goes to the following folks:
Aaron Brager for motivating me and assisting me in building the initial proof-of-concept of Siren (based on Harpy) back in 2015. Without him, Siren may never have been built.
All of Harpy's Contributors for helping building the feature set from 2012-2015 that was used as the basis for the first version of Siren.
All of Siren's Contributors for helping make Siren as powerful and bug-free as it currently is today.
Có — ArtSabintsev/Siren phát hành theo license MIT, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/ArtSabintsev/Siren.
ArtSabintsev/Siren có trang demo không?
Dự án có trang chủ ở http://sabintsev.com/. Tab "Readme" ở trang này thường có ảnh chụp và hướng dẫn bắt đầu nhanh.
ArtSabintsev/Siren dùng license gì?
ArtSabintsev/Siren phát hành theo license MIT. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
ArtSabintsev/Siren là gì?
ArtSabintsev/Siren (ArtSabintsev/Siren) là dự án Swift trên GitHub. Theo mô tả gốc: Notify users when a new version of your app is available and prompt them to upgrade.
Cùng nhóm Mobile còn repo nào?
ArtSabintsev/Siren thuộc nhóm Mobile trên TopGit, cùng 7 topic GitHub. Trang Trending và Topics liệt kê các repo cùng số sao và cùng ngôn ngữ để so sánh.
Đọc thêm về ArtSabintsev/Siren ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/ArtSabintsev/Siren là nguồn chính thức.
Vì sao ArtSabintsev/Siren được xếp vào nhóm Mobile?
TopGit xếp ArtSabintsev/Siren vào nhóm Mobile dựa trên GitHub topics và mô tả của repo (gắn thẻ: "alert", "alerts", "cocoapods"). Việc phân loại dựa trên metadata thật của repo, không phải đoán theo cảm tính biên tập.
Đọc đầy đủ README ở tab phía trên.
Siren có đáng để bạn bỏ thời gian?
ChatGPT, Claude và Perplexity đều đọc được trang này. Hỏi thử xem họ nghĩ gì về Siren.