Git Product home page Git Product logo

siren's Issues

Support for iOS8

Just discover that Siren 1.0.0 doesn't support iOS8.0 anymore, is there a technical reason for that?

I know Apple suggests to support only the last two major version, but it would be great to have at least one release supporting Swift 3 and iOS8 for all the developers that can't drop that version yet ๐Ÿ‘ผ

CFNetwork SSLHandshake failed (-9801) errors

Hi,

when I try to use Siren in my app, I get SSL errors on startup:

CFNetwork SSLHandshake failed (-9801)
CFNetwork SSLHandshake failed (-9801)
CFNetwork SSLHandshake failed (-9801)
CFNetwork SSLHandshake failed (-9801)
NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9801)

Do I have to add a URL to my App Transport Security exceptions for Siren to work?

Set 'presentingViewController' before calling checkVersion Error

I am using Siren 0.3.5 via CocoaPods 0.37.2 and am getting the error

"Please make sure that you have set 'presentingViewController' before calling checkVersion."

Have tried running from AppDelegate and from a UIViewController. I've tried setting the following in the UIViewController code:

siren.sharedInstance().presentingViewController = self

but getting nil when unwrapping Optional in

func sirenBundlePath() -> String {
    return NSBundle.mainBundle().pathForResource("Siren", ofType: "bundle") as String!
}

Can't test unless app is live in the app store.

I want to test on Siren however I do not currently have a version live in the app store so I can't "Temporarily change the version string in Xcode to an older version than the one that's currently available in the App Store" as is specified in the ReadMe.

Here are the results from turning on debug:

[Siren] iTunes Lookup URL: https://itunes.apple.com/lookup?id=XXXXXXXXX (I'm obscuring my app id)
[Siren] JSON results: [resultCount: 0, results: (
)]
[Siren] Error retrieving App Store verson number as results returns an empty array

Currently I'm just finding a random app on the app store and using their app id for testing.

Setting the alertType to .Force doesn't seem to work

let siren = Siren.sharedInstance
siren.appID = "[APP_ID]"
siren.alertType = .Force
siren.checkVersion(.Immediately)

This brings up an alert with "Next time" and "Update" as options, which is the default alert type.
Am I doing something wrong?

if app is not in app store yet, it crashes

Change processVersionCheckResults() to this to fix the issue (first check if app is available)

private func processVersionCheckResults(results: [String : AnyObject]) {

        if results["results"]?.count > 0 {
            self.currentAppStoreVersion = results["results"]?[0]["version"] as? String
            if let currentAppStoreVersion = self.currentAppStoreVersion {
                if self.isAppStoreVersionNewer() {
                    self.showAlertIfCurrentAppStoreVersionNotSkipped()
                }
            } else {
                if self.debugEnabled {
                    println("[Siren] Error retrieving App Store version number")
                }
            }
        }
        else {
            if self.debugEnabled {
                println("[Siren] App not found")
            }
        }


    }

other server

hello
i can update app version whiteout appstor Apple

iOS 8 skipAlertAction bug

NSUserDefaults.standardUserDefaults().setObject(currentAppStoreVersion!, forKey:sirenDefaultSkippedVersion) NSUserDefaults.standardUserDefaults().synchronize()

Did not perform this code

Manual Installation Error

There is no proper folder to be manually added into my own project. Need to open the Sample App and pull the Siren.framework into my own project.

Error when trying to retrieve App Store data

I'm getting this error when I run the app.
[Siren] JSON results: ["resultCount": 0, "results": <__NSArray0 0x15de15b60>()]
[Siren] Error retrieving App Store data as an error was returned.

I don't know where to specify my App Id now when that property is private. My app is active on the app store so this don't happen because of it doesn't exist there.

What am I missing?

Error when testing - EXC_BAD_INSTRUCTION

I'm getting an error (EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode 0x0)) on the return on this:

func sirenBundlePath() -> String {
return NSBundle.mainBundle().pathForResource("Siren", ofType: "bundle") as String!
}

Thread 1 says:
0 function signature specialization <Arg[1] = Owned to Guaranteed> of ext.MYAPP.ObjectiveC.NSBundle.(sirenForcedBundlePath in _......."

Any ideas? It seems to only crash when I try to make the app fail (by pointing towards the iTunes Connect appID, since my app isn't in the store yet to test against.

Thanks!

hideWindow() causes a crash

When the alert pops up and user presses home button and go back app again. Tap "Next Time" or "Update" will cause a bug.

I found the hideWindow() cause this issue. you need to check the updateWindow if nil before hide it.
Please fix this, thanks.

Multiple checkVersion in app?

Is it fine to have siren.checkVersion(.Immediately) in didFinishLaunchingWithOptions and Siren.sharedInstance.checkVersion(.Daily) in applicationDidBecomeActive? I saw in the obj-c project you advice to just use one, but I think it's useful to do a immediate check when the app launch for the first time as well as daily.

Version check comparison error.

This issue simply shouldn't be happening.

There needs to be another way to compare version numbers, 16.0 is certainly the same as 16 and shouldn't be treated as requiring a new version! :O I was shocked when I saw this..
Did some debugging and found the problem area...
Today our app was accepted only for siren to cause our users to go into a never ending loop of installs..

screen shot 2016-06-16 at 02 50 53

Version check

I think the currentInstalledVersion should check for CFBundleVersion instead of CFBundleShortVersionString

Checking works only once

There is erorr in checking of date in the daysSinceLastVersionCheckDate method. Please accept my pull request.

Warnings when launching app store from UIAlertAction completion handler.

Running sample app in iOS 9.3 produces the following warnings in the console:

2016-05-04 14:53:59.978 Sample App[13254:43700378] _BSMachError: (os/kern) invalid capability (20)
2016-05-04 14:53:59.979 Sample App[13254:43700738] _BSMachError: (os/kern) invalid name (15)

Stackoverflow suggests using dispatch_async to fix this:

let action = UIAlertAction(title: title, style: .Default) { (alert: UIAlertAction) in
            self.hideWindow()
            dispatch_async(dispatch_get_main_queue(), {
                self.launchAppStore()
            })
            self.delegate?.sirenUserDidLaunchAppStore()
            return
        }

Swift 3

Hello and thanks for this framework,

Is there a Swift 3 branch on its way?

I can't use it with Xcode 8 and Swift 3 beta and Cocoapods... Or couldn't find how to.

Thanks!

Carthage support?

It would be great to have Carthage support. If I create a PR, would you accept it?

(Not that I'm a Carthage creation expert, but it would give me extra incentive to try if I know it will be accepted and updated ongoing, thanks!)

Mac App Store support

It would be great to have only one library to handle all the platforms ๐ŸŽ‰
Not sure how hard it would be to port to Siren to macOS, probably just be the interface part which has to be platform related.

Altering AppID and Test with 0.8

How can I set the appID for testing ? My app is not in app store yet and I need to set the AppID but as instruction says, the AppID is now fetched from the API.

Any solution for how to test with other AppID's

Attempting to load a UIAlertController when VC is deallocating

I am trying to perform a check immediately when the app open, so I call check immediately from didFinishLaunchingWithOptions. I keep getting the following error:
Attempting to load the view of a view controller while it is deallocating is not allowed and may result in undefined behavior

I also tried calling it from the View Controller in didAppear and get the same error.

sirenDidShowUpdateDialog Function Not Called

I have implemented the 'SirenDelegate' within my ViewController, and the dialog appears properly, however the 'sirenDidShowUpdateDialog' is not getting called. I have the following in my code:

func sirenDidShowUpdateDialog() {
    print("did show dialog")
}

func sirenUserDidLaunchAppStore() {
    print("did launch app store")
}

func sirenUserDidCancel() {
    print("did cancel")
}

The 'sirenUserDidLaunchAppStore' and 'sirenUserDidCancel' 'print' statements are called properly, but the 'sirenDidShowUpdateDialog' 'print' statement is not called when the dialog appears.

Public API to close alert and version check?

Hi,

Would it be possible to have a public API to be able to close the alert with a method?

Also, we rolled our own forced update alert with our API. I would love to be able to use the same method you use to check if the current app version is older than X version. Would it makes sense to open it up as well?

sirenDidFailVersionCheck

I had an error but i don't know what exaclty it is
Can anyone help me to find out
Here is the log from console tab

sirenDidFailVersionCheck Error Domain=Siren Error Domain Code=1001 "No new update available." UserInfo={NSLocalizedDescription=No new update available.}
[Siren] No new update available.

Many Thanks

UIAlertController

Hello,

First of all -- great project.

I noticed that the UIAlertController only appears if the window's rootViewController is visible when you open the app. It's not a bug with UIAlertController, but it has to do with UIAlertController being a UIViewController instead of a UIView (like UIAlertView).

Have you figured out how to show the update alert when the app resumes on a view controller that's not the rootViewController?

I've tried using a second UIWindow and then presenting the UIAlertController on that, but I ran into some odd issues.

Thanks in advance!
Dylan

Crash when no internet

Siren crashes the app when no internet/service.

HockeyApp Log:

MyApp.Siren.((performVersionCheck in _5FA0E00E9C2A892EB4899D0EF44B562B) (MyApp.Siren) -> () -> ()).(closure #1) (Siren.swift:273)

partial apply forwarder for reabstraction thunk helper from @callee_owned (@in (Swift.ImplicitlyUnwrappedOptional<ObjectiveC.NSData>, Swift.ImplicitlyUnwrappedOptional<ObjectiveC.NSURLResponse>, Swift.ImplicitlyUnwrappedOptional<ObjectiveC.NSError>)) -> (@out ()) to @callee_owned (@owned Swift.ImplicitlyUnwrappedOptional<ObjectiveC.NSData>, @owned Swift.ImplicitlyUnwrappedOptional<ObjectiveC.NSURLResponse>, @owned Swift.ImplicitlyUnwrappedOptional<ObjectiveC.NSError>) -> (@unowned ()) with unmangled suffix "25" (Siren.swift:0)

Swift 3 and SwiftPM support

Hi,
If your component is SwiftPM compatible it's will be great you add
add SwiftPM Compatible on top of your README.md and add section for the installation with SwiftPM.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.