missing package product

45,754 results found

Post

Replies

Boosts

Views

Activity

Reply to iOS 9 Beta battery life
Not what i expected from the first beta..... i know it is normal as it is not a finished product... but claim like.. we got an extra hour and then i am down to 80 % in 2 hours and it is getting worse...... it is not a good sign.All in all considering there isn't much new i expected this first beta to be more stable as in battery life..Hoping for a quick fix or it is down to iOS 8 very soon.
Jun ’15
Reply to iOS 9 Beta battery life
You know it's a beta 1, right?What part of i know it is normal as it is not a finished product made you think i don't know it is a beta / unifinished product?Are you trying to raise your post count?? Back on topic, i have been using this beta since it came out, and after a full night of doing a lot on things behind the scenes i am sure today my phone is doing NOTHING! also because the battery readings ,as most noticed, shows that the most usage comes from lock and home screen.Edit:Also the phone seems to run a little hotter than normal, i guess it might be one of the reason / cause for the battery drain.
Jun ’15
Reply to Open-Sourcing Plan
I don't think we have to fear that Apple loses control of the language. Open sourcing doesn't mean giving away control or has Java left the control of Sun/Oracle because it got open sourced? Guido Rossum still has much power in Python as has Matz with Ruby.
Jun ’15
xcodebuild
I have a question regarding xcodebuild. I have created a static library and I want to build it and create my .a file without using Xcode. I run xcodebuild from the terminal and it runs without generating an error and tells me that the code is built but there are no files generated in product folder. Any thoughts?
1
0
905
Jun ’15
Reply to Magic Trackpad
In my Mac MagicMouse is not working ,I am able to move my cursur but not able to perform touch action via the trackpad on it. Really have no idea, it that missing some driver?Just interesting why Apple didn't realize this such big issue...
Jun ’15
Implementing trial period for auto-renewing subscriptions
I need a guide for adding trial period option for iOS app auto-renewing subscription without using separate server.The thing is that different time period options inside one auto-renewing group of items have separate IDs, however there is no ID for trial period. How can I request it from out my app after user presses Trial period button.There are no descriptions on Developer Forums and on other websites, no examples as well, so I don't know how to implement this.P.S.: I use RMStore to cover transaction APIs.Here is how the code approximately looks:- (void)performRequestForProduct:(NSString *)productID completionBlock:(void(^)(BOOL success))func { NSSet *productIdentifiers = [NSSet setWithObjects:kInAppIDUltimate, kInAppIDPremium1Year, kInAppIDPremium1Month, kInAppDonationBundleID, nil]; [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES]; [[RMStore defaultStore] requestProducts:productIdentifiers success:^(NSArray *products, NSArray *invalidProducts) { if (invalidProducts.count
1
0
803
Jun ’15
Reply to **Organizing an entire list of Unstable Apps**
If it is of no value to you it is of no value to others?What is the value of this thread? To see what works and what not.....Who would read it? I do ...and you just didWho would act on this? People who have one device only and might decide not to update to the beta (if their workflow is interrupted)Who would check what others write are valid? It's called feedback.. you say what you see ....i do too... and figure out why (it might be device specific and again people would know if their specific workflow might be affected)There is no real conversation, this is a multithread. Definetly not with that attitude, little miss sunshine the world does NOT revolve around you....... the sun raised even if you were asleep you know? 😉On topic ..1Password works here (iPhone 6 128 GB iOS 9 Beta 1)!
Jun ’15
Swift 2.0 deployment target 7.1
I have a very small Swift 2.0 project which should run on 7.1 and newer.It should use WKWebView on iOS > 8.0 and UIWebView on iOS < 8.0.As soon as I add the WKWebView I can't compile the app again:import UIKit import WebKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() if #available(iOS 8.0, *) { let w = WKWebView() w.frame = self.view.frame w.autoresizingMask = [UIViewAutoresizing.FlexibleWidth, UIViewAutoresizing.FlexibleHeight] self.view.addSubview(w) } else { let w = UIWebView() w.frame = self.view.frame w.autoresizingMask = [UIViewAutoresizing.FlexibleWidth, UIViewAutoresizing.FlexibleHeight] self.view.addSubview(w) } } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } }When I compile for the simulator I have no problems at all, but when compiling for devices I get the following warning:ld: warning: URGENT: all bitcode will be dropped because '/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/
5
0
2.8k
Jun ’15
Reply to watchOS 2b1 wiped Activity data
I had the same experience, after the same steps you took (unpaired to create the backup). My activity rings for the previous and current day were reset.It did sync my activity since installing watchOS 2, so it just looks like losing a couple of days of data is the price to pay for being on the cutting edge.
Jun ’15
Reply to Future of Newsstand?
Can you elaborate on what they said again. I watched it but missed that and I'm at work and can't watch it. Meanwhile my client is flipping her lid because we've just ran a huge launch campaign for our Newsstand app, we have a truck load of subscribers and the positive feedback has been overwhelming. Some kind of answer to give to her would be great.If I suddenly have to scrap the whole thing and start again I'm not going to be happy. Hopefully there's be an easy migration process or something, but whatever happens I need to maintain my current subscribers and format. My client rejected a flipboard style curation app due to the fact that market research showed that our customers actually want a like for like digitial copy of our paper publication (which has been running since 1969 and has a traditional and somewhat cult following). Our customers love our app.I feel Apple have dropped the ball on this a little. Even a notification in the Newsstand tab of my App in iTunes Connect that points to some he
Jun ’15