younatics / AppUpdater

❗️Check your update and show alert with one line of code
MIT License
49 stars 5 forks source link

Any example on this? #4

Open arkilis opened 5 years ago

arkilis commented 5 years ago

i.e. how to set up URL, msg?

AMJ-7 commented 3 years ago

i.e. how to set up URL, msg?

1- Make sure Bundle Identifier is the same as on the AppStore 2- Just add the code on AppDelegate > applicationDidBecomeActive

import AppUpdater

...

    func applicationDidBecomeActive(_ application: UIApplication) {
        AppUpdater.showUpdateAlert(isForce: true)
    }