Search results for

“missing package product”

52,396 results found

Post

Replies

Boosts

Views

Activity

Reply to Java SE 6
Me too, other Java apps also broken and when trying to reinstall Java 6 I get the following error:Java for OS X 2014-001 can't be installed on this disk. A newer version of this package is already installed.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
BLE scan may freeze randomly
I'm currently working on an app that handle communication with a BLE device. One of my constraint is that i must connect to this device only when i have to send a command or read data. I must disconnect as soon as possible when it's done, to allow other potential users to do the same.One of the features of the app is the following :Users can enable an automatic command while the app is in the background. This automatic command triggers if the device hasn't been detected within 10 minutes.My app scans until it finds my BLE device.In order to keep it awake when i need it, i'm restarting the scan each time, because of the CBCentralManagerScanOptionAllowDuplicatesKey option ignorance.When it's detected, i'm checking if the last detection was more than 10 minutes ago. If that's the case, i connect to the device and then write into the characteristic corresponding to the service i need.The goal is to trigger this device when user come in range. It may happen a few minutes after being out of range such as a few hour
5
0
3.6k
Jun ’15
Link warning after converting project to Xcode 7
(Since there's no specific forum for the beta of Xcode 7, I'm posting this here...)After letting Xcode convert a simple Swift project to Xcode 7, and fixing the various Swift inspired build errors, I'm still seeing a link warning:ld: warning: directory not found for option '-F/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks'This looks like it's coming while Xcode is linking the test target:Ld /Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Products/Debug-iphonesimulator/TestTests.xctest/TestTests normal x86_64 cd /Users/John/Dev/Test export IPHONEOS_DEPLOYMENT_TARGET=8.2 export PATH=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin /Applications/Xcode-beta.app/Contents/Dev
11
0
41k
Jun ’15
watchOS installation is buggy
First of all, I got the UDID of my AppleWatch.And, I have registered my device in certificate, identifier and profile”.Then, I installed the iOS9 to iphone6p.iPhone6p was frequently repeated reboot as if to broken and crazy every few seconds.The phenomenon lasted for 15 minutes.Then, iPhone was arbitrarily shut down.After I restart the iPhone manually, it was repeated several times synchronization, from the backup It also succeeded in restoring.Then. AppleWatch is pairing off, had been to the initial state.(Since UDID can not be obtained at this point, you should be careful)And helplessly, I decided to restore the pairing.At that time, it was going to select a restore from a backup, the AppleWatch is in a state where there are no more little application deployment and data.activity app of AppleWatch , since it was started from really initial start-up was such a message, I was amazed.Is it should not be enough to synchronize the data that overlap of activity app on AppleWatch and iPhone?if official released Ap
2
0
643
Jun ’15
App rejected: Abandoned batch. IAP restore functionality.
Hello,I'm working on application, that works with user financial data.User should create account, log in, scan his personal card with social ID and get information from financial service.Requests to financial service are not free of charge.This service is provided by Local Authoritires and data could be retrieved after payment.I used IAP to buy Interrogations.For example - if user buys 10 interrogations - he can perform 10 requests to service.Every successful request decreases interrogation count by 1.Application was rejected with few reasons and i don't know exactly what they mean1) Abandoned BatchWe found that while you have submitted In App Purchase products for your app, the In App Purchase functionality is not present in your binary.But i can't add consumable abstract number of requests to binary - it's just stored at server side for every user.2) Missing restore mechanismYes, actually, app don't have special Restore button, but number of purchased interrogations is stored at server.So,
2
0
742
Jun ’15
Using Xcode 7 for production apps
I want to take advantage of the new UI testing features in Xcode 7. However it's forcing me to upgrade my project to Swift 2. I'm guessing Swift 2 apps can't be submitted yet? How can I make use of Xcode 7 on a project which mixes Swift and Objective-C code while still keeping it able to submit.
13
0
2.3k
Jun ’15
use of unresolved identifier 'self'
So I'm trying to debug a swift app with LLDB and ever since I incorporated cocoapods, I get this error when trying to use po on any variables or objects.error: <EXPR>:1:1: error: use of unresolved identifier 'self'I have checked all the optimization settings for my targets and project overview and everything seems correct according to other forums posts that used to be here.This is happening with xcode 6.3.2 and 6.4 beta 3, I havent tried with xcode 7 yet because I dont want to convert my app over to swift 2 yet.From what little I have learned it might be an xcode bug, but since its really difficult to debug complex apps with random println() I'm following up and trying to make sure I didnt miss some random setting that might be affecting this.Thanks.
1
0
4.2k
Jun ’15
Access to gyroscope?
Good morning! While I am thrilled to see Apple open up access to many areas of WatchOS and WatchKit, I was wondering - Am I missing something? They announced access to the Digital Crown and Accelerometer, has anyone seen mention of access to the gyroscope in the device?Let me know if I am blind...
5
0
1.9k
Jun ’15
Create native WatchOS app
Hi, a few hours ago I downloaded Xcode 7 beta and I was wondering if I could start developing a native WatchOS app. According to WWDC 15 presentation I understood I could but, when I get to Xcode -> New Project, the only option for WatchOS I can choose is: iOS App with WatchKit App. Am I missing something or I can't do an only-watch app? Thanks.
2
0
622
Jun ’15
Reply to Java SE 6
Me too, other Java apps also broken and when trying to reinstall Java 6 I get the following error:Java for OS X 2014-001 can't be installed on this disk. A newer version of this package is already installed.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to First install impressions?
Seems pretty nice, except Java 6 is broken or missing and I can't reinstall it. Error below:Java for OS X 2014-001 can't be installed on this disk. A newer version of this package is already installed.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
BLE scan may freeze randomly
I'm currently working on an app that handle communication with a BLE device. One of my constraint is that i must connect to this device only when i have to send a command or read data. I must disconnect as soon as possible when it's done, to allow other potential users to do the same.One of the features of the app is the following :Users can enable an automatic command while the app is in the background. This automatic command triggers if the device hasn't been detected within 10 minutes.My app scans until it finds my BLE device.In order to keep it awake when i need it, i'm restarting the scan each time, because of the CBCentralManagerScanOptionAllowDuplicatesKey option ignorance.When it's detected, i'm checking if the last detection was more than 10 minutes ago. If that's the case, i connect to the device and then write into the characteristic corresponding to the service i need.The goal is to trigger this device when user come in range. It may happen a few minutes after being out of range such as a few hour
Replies
5
Boosts
0
Views
3.6k
Activity
Jun ’15
Reply to **Organizing an entire list of Unstable Apps**
Yes, you have one point.You want to install the beta, and want to know which apps you will miss doing so.Now I can understand you.Please do not bo se arrogant.I am using this site for totally different purposes. To discuss bugs, workarounds, to resolve problems.So sorry for misunderstanding you.Take care.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Link warning after converting project to Xcode 7
(Since there's no specific forum for the beta of Xcode 7, I'm posting this here...)After letting Xcode convert a simple Swift project to Xcode 7, and fixing the various Swift inspired build errors, I'm still seeing a link warning:ld: warning: directory not found for option '-F/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks'This looks like it's coming while Xcode is linking the test target:Ld /Users/John/Library/Developer/Xcode/DerivedData/Test-aertfqgditidcgdgjozgjseufxmx/Build/Products/Debug-iphonesimulator/TestTests.xctest/TestTests normal x86_64 cd /Users/John/Dev/Test export IPHONEOS_DEPLOYMENT_TARGET=8.2 export PATH=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin /Applications/Xcode-beta.app/Contents/Dev
Replies
11
Boosts
0
Views
41k
Activity
Jun ’15
Archive Validate The Request Timed Out
To validate my application from xcode Product> Archive> Validate I get an error Archive validation failed due to the issues listed below. iTunes Store Operation failed. The Request Timed outCan anyone help with this
Replies
5
Boosts
0
Views
4.3k
Activity
Jun ’15
watchOS installation is buggy
First of all, I got the UDID of my AppleWatch.And, I have registered my device in certificate, identifier and profile”.Then, I installed the iOS9 to iphone6p.iPhone6p was frequently repeated reboot as if to broken and crazy every few seconds.The phenomenon lasted for 15 minutes.Then, iPhone was arbitrarily shut down.After I restart the iPhone manually, it was repeated several times synchronization, from the backup It also succeeded in restoring.Then. AppleWatch is pairing off, had been to the initial state.(Since UDID can not be obtained at this point, you should be careful)And helplessly, I decided to restore the pairing.At that time, it was going to select a restore from a backup, the AppleWatch is in a state where there are no more little application deployment and data.activity app of AppleWatch , since it was started from really initial start-up was such a message, I was amazed.Is it should not be enough to synchronize the data that overlap of activity app on AppleWatch and iPhone?if official released Ap
Replies
2
Boosts
0
Views
643
Activity
Jun ’15
Reply to **Organizing an entire list of Unstable Apps**
The Wink (home control) app is unusable in that it will not let you log in. The app displays a Missing JSON dictionary message.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to watchOS installation is buggy
...if official released AppleWatchOS lost the personal activity data, user will rage.iOS 9 is a beta; betas have bugs.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Does watchOS 2 beta1 include the new watch faces?
Doesn't seem like it... just wondering if I'm missing something obvious to turn them on or something?
Replies
2
Boosts
0
Views
259
Activity
Jun ’15
App rejected: Abandoned batch. IAP restore functionality.
Hello,I'm working on application, that works with user financial data.User should create account, log in, scan his personal card with social ID and get information from financial service.Requests to financial service are not free of charge.This service is provided by Local Authoritires and data could be retrieved after payment.I used IAP to buy Interrogations.For example - if user buys 10 interrogations - he can perform 10 requests to service.Every successful request decreases interrogation count by 1.Application was rejected with few reasons and i don't know exactly what they mean1) Abandoned BatchWe found that while you have submitted In App Purchase products for your app, the In App Purchase functionality is not present in your binary.But i can't add consumable abstract number of requests to binary - it's just stored at server side for every user.2) Missing restore mechanismYes, actually, app don't have special Restore button, but number of purchased interrogations is stored at server.So,
Replies
2
Boosts
0
Views
742
Activity
Jun ’15
Using Xcode 7 for production apps
I want to take advantage of the new UI testing features in Xcode 7. However it's forcing me to upgrade my project to Swift 2. I'm guessing Swift 2 apps can't be submitted yet? How can I make use of Xcode 7 on a project which mixes Swift and Objective-C code while still keeping it able to submit.
Replies
13
Boosts
0
Views
2.3k
Activity
Jun ’15
use of unresolved identifier 'self'
So I'm trying to debug a swift app with LLDB and ever since I incorporated cocoapods, I get this error when trying to use po on any variables or objects.error: <EXPR>:1:1: error: use of unresolved identifier 'self'I have checked all the optimization settings for my targets and project overview and everything seems correct according to other forums posts that used to be here.This is happening with xcode 6.3.2 and 6.4 beta 3, I havent tried with xcode 7 yet because I dont want to convert my app over to swift 2 yet.From what little I have learned it might be an xcode bug, but since its really difficult to debug complex apps with random println() I'm following up and trying to make sure I didnt miss some random setting that might be affecting this.Thanks.
Replies
1
Boosts
0
Views
4.2k
Activity
Jun ’15
Access to gyroscope?
Good morning! While I am thrilled to see Apple open up access to many areas of WatchOS and WatchKit, I was wondering - Am I missing something? They announced access to the Digital Crown and Accelerometer, has anyone seen mention of access to the gyroscope in the device?Let me know if I am blind...
Replies
5
Boosts
0
Views
1.9k
Activity
Jun ’15
Create native WatchOS app
Hi, a few hours ago I downloaded Xcode 7 beta and I was wondering if I could start developing a native WatchOS app. According to WWDC 15 presentation I understood I could but, when I get to Xcode -> New Project, the only option for WatchOS I can choose is: iOS App with WatchKit App. Am I missing something or I can't do an only-watch app? Thanks.
Replies
2
Boosts
0
Views
622
Activity
Jun ’15