{"id":15293629,"url":"https://github.com/salyangoz/updateme-ios","last_synced_at":"2025-09-01T02:38:17.010Z","repository":{"id":56925406,"uuid":"100259687","full_name":"salyangoz/updateme-ios","owner":"salyangoz","description":"A powerful force update library for Swift","archived":false,"fork":false,"pushed_at":"2017-08-14T11:48:51.000Z","size":33577,"stargazers_count":2,"open_issues_count":0,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-25T09:32:30.061Z","etag":null,"topics":["firebase","remote-config","swift","swift3"],"latest_commit_sha":null,"homepage":"http://www.salyangoz.co","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/salyangoz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-14T11:20:17.000Z","updated_at":"2017-08-17T10:56:36.000Z","dependencies_parsed_at":"2022-08-20T22:50:28.002Z","dependency_job_id":null,"html_url":"https://github.com/salyangoz/updateme-ios","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/salyangoz/updateme-ios","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salyangoz%2Fupdateme-ios","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salyangoz%2Fupdateme-ios/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salyangoz%2Fupdateme-ios/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salyangoz%2Fupdateme-ios/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/salyangoz","download_url":"https://codeload.github.com/salyangoz/updateme-ios/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salyangoz%2Fupdateme-ios/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273067266,"owners_count":25039774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["firebase","remote-config","swift","swift3"],"created_at":"2024-09-30T16:50:15.423Z","updated_at":"2025-09-01T02:38:16.988Z","avatar_url":"https://github.com/salyangoz.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"UpdateMe\n--------\n\n[![Version](https://img.shields.io/cocoapods/v/UpdateMe.svg?style=flat)](http://cocoapods.org/pods/UpdateMe)\n[![License](https://img.shields.io/cocoapods/l/UpdateMe.svg?style=flat)](http://cocoapods.org/pods/UpdateMe)\n[![Platform](https://img.shields.io/cocoapods/p/UpdateMe.svg?style=flat)](http://cocoapods.org/pods/UpdateMe)\n\nA powerful force update library for Swift. \n\u003cimg src=\"http://www.salyangoz.com.tr/updateme/sample-ios.png\" width=\"300\"\u003e\n\nYou can set Version of your app remote and show dialog to force update your app whenever you want.\n\nRequirements\n--------\n\nIn order to use this library you need to create Firebase project and add RemoteConfig parameters. Configuration showed in Introduction section.\n\nInstallation\n--------\n\nUpdateMe is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod \"UpdateMe\"\n```\n\nIntroduction\n--------\n\n1. Create Firebase project http://firebase.google.com \n2. Firebase will give you google-services.json file. Paste this file into your projects root directory.\n3. In the left menu choose remote config and add these parameters.\n4. Add these parameters\n\n| Parameter Key  | Default Value |\n| ------------- | ------------- |\n| ios_update_me_required  | Do you want to force update App (Ex: false|true)  |\n| ios_update_me_current_version  | The version of your app(Ex: 1.0.0)  |\n| ios_update_me_store_url  | The store url(Ex: http://play.google.com/store/apps/com.salyangoz.torrentfinder)  |\n| ios_update_me_dialog_title  | Update dialog title(You can leave blank)  |\n| ios_update_me_dialog_description  | Update dialog message(You can leave blank)  |\n\n\nUsage\n--------\n\n###### Basic Usage\n\nYou should add this code block in View Controller's viewDidAppear function.\n\n```groovy\noverride func viewDidAppear(_ animated: Bool) {\n        \n        //Basic Usage\n        UpdateMe.with().build().check()\n\n}\n```\n\n###### Advanced Usage\nFeatures\n1. Set dialog visibility\n2. Add listeners to Positive and Negative button clicks. \n3. Set positive and negative button text and colors. \n4. Set custom icon \n\n```groovy\noverride func viewDidAppear(_ animated: Bool) {\n        \n        //Advanced Usage\n        \n        let update:UpdateMe = UpdateMe.with(fetchIntervalInSeconds: 30)\n            .setDialogIcon(image: UIImage(named: \"info.png\")!)\n            .setTopColor(color: 0xDF5745)\n            .onPositiveButtonClick(onPositiveButtonClickListener: self)\n            .onNegativeButtonClick(onNegativeButtonClickListener: self)\n            .onUpdateNeeded(onUpdateNeededListener: self)\n            .setContinueButtonVisibility(visible: true)\n            .setPositiveButtonText(title: \"Update\")\n            .setPositiveButtonTextColor(color: UIColor.orange)\n            .build()\n        update.check()\n        \n\n}\n```\n\nSpecial Thanks\n--------\nCustom alert dialogs pulled from SCLAlertView for Swift repository. https://github.com/vikmeup/SCLAlertView-Swift\n\n\n## Author\n\nSalyangoz Co. , info@salyangoz.com.tr\n\n\n## License\n\nUpdateMe is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalyangoz%2Fupdateme-ios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsalyangoz%2Fupdateme-ios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalyangoz%2Fupdateme-ios/lists"}