Post not yet marked as solved
The reviews are created at source in December but the request for review capturing have been received in January. There is a lag of capturing reviews from Appstore Website.
https://apps.apple.com/in/app/spinny-buy-and-sell-used-cars/id1533602426?see-all=reviews.
Above is the link to all the reviews for Spinny: Buy and Sell Used Cars brand.
I have attached the images of both, review given at AppStore and the request received to create the ticket.
The same is seen for multiple reviews captured.Please address the issue as soon as possible.
Regards,
Chaitra
Post not yet marked as solved
I'm unable to create new feedback in feedbackassistant.apple.com
It keep loading after I click submit button and never finished.
Hello everyone,
I decide to send a feedback in the Feedback app about the software beta version. But I have a question about it, when I post my feedback only Apple team can see it or it's visible to anyone?
Thanks in advance.
Post not yet marked as solved
This page talks about the Feedback Assistant app for developers, and how it's the preferred way to submit feedback. But I didn't see anything obvious about how to get it. So I look for it in the app store. Nothing.About 5 minutes of searching brings me back to a well-hidden sentence on that page saying that it's on the home screen if you have a Beta version installed, but you can enable it on the publicly released versions by "installing a beta profile".I have no idea what that means. I can find no info on the web or the searching the developer site about how to "install a beta profile". I find instructions for installing Beta versions of iOS, but don't see anything about how to get the app without actually installing a beta OS.I did find a (sketchy as F...) website called betaprofiles.com <--- (don't click) that downloads and tries to install software on my Mac. (To which I said 'ell no). Seems an opportunist noticed this gaping vacuum that Apple created and stepped in to "fill it". I wonder how many people have gotten malware because of this lack of documentation.Sorry, frustrated as heck.OK, finally stumbled on the instructions in a MacWorld article. I guess I've started downloading "the profile", it will supposedly notify me when it's finished downloading, but I can't confirm that's actually happening. And I still don't even know what a "profile" is or what will happen if I "install" it.Seriously, this info should be easier to find. Searching these terms should bring up an informative article on apple.com at the top of the results, not some shady (AFAICT) malware site, and the best info being on MacWorld.
I read the following the case number in a thread in Swift forum. I wonder how can I access it?
rdar://problem/60594597
According to the discussion in https://developer.apple.com/forums/thread/8796, the public portal of Radar has been replaced by Feedback Assistant. But when I searched the case number (60594597) in Feedback Assistant web site, it returned no results.
Am I misunderstanding something? Thanks for any help.
Post not yet marked as solved
Does the reported contents in Feedback Assistant keep in private?
I'm looking for privacy policy for Feedback Assistant but I cannot found it. If it's written in somewhere, I'm happy if you share it.
Post not yet marked as solved
Hello there!
Is there a way for escalating or following up on a bug report via the Feedback Assistant App?
The feedback ID is FB9727299
I reported a bug around 3 months ago. I haven't seen any update beyond:
Similar Reports: More Than 10
Resolution: None
Any help is really appreciated. Thanks!
Post not yet marked as solved
Hello, my Macbook Pro (MacOS Mojave version 10.14.6) shuts down randomly when it still has battery, but says it doesn't have battery left. Then when I plug it, shows that it does have battery, which is very odd. I looked into the terminal, with the command: log show --predicate 'eventMessage contains "Previous shutdown cause"' --last 24h to see which was the cause, and it appears: Previous shutdown cause: -11 but I can't find anywhere what this means, does anyone know the meaning of -11? thank you.
Helle everyone!
I was preparing for this year's Swift Student Challenge, and I have some questions about it. I know that Apple every year changes something in the Challenge, but I want to be ready. As I know for participating to the challenge I have to build a playground in Swift Playgrounds. So for that in Swift Playgrounds I have to use SwiftUI kit or build it in another way?
PS: if someone knows some Swift Playgrounds tutorials please suggest me here.
Thank you very much!
I was report a bug to give access to sensitive data, but the Apple program don't answer. Delay for payments and in sometimes decline to.
The others company's give more importance for reports and I need to understand, why report?
Post not yet marked as solved
Years ago the Bug Reporter was a great little tool and Apple would 9 out of 10 times respond to a post made via by Dev account. But ever since it switched over the Feedback Assistant I've not gotten a single response or acknowledgement. The silence started in 2019. Anyone else finding the same or am I doing something wrong here?!?
Post not yet marked as solved
desde que actualice al monterey, mi macbook pro no funciona, necesito saber que hacer!?
Post not yet marked as solved
Hello everyone!
I have updated my iPhone to iOS 15.2.1 and before this update my phone after the good the sleep mode turns off, it appears a screen with written on it “Good Morning” and the weather. But since I have updated my device to iOS 15.2.1 it isn’t showing me this screen. Is it a feature that Apple has deleted or is this a bug?
Thank you.
Post not yet marked as solved
My MacBook turned off while os update and now I can’t turn it on. What should I do?
Hello, below are the lines of code where the error is found. It seems to me that I have declared the function "picker" ( UIDatePicker) however I get an error that "Cannot find 'picker' in scope" ( the error is displayed on line 66, next to " let pickedDatetime = picker.time"
import UIKit
class DateViewController: UIViewController, UITextFieldDelegate {
private let field: UITextField = {
let field = UITextField(frame: CGRect (x: 220, y: 220, width: 100, height: 100))
field.placeholder = "Enter Text"
field.becomeFirstResponder()
return field
}()
private let Buttonb: UIButton = {
let Buttonb = UIButton(frame: CGRect (x: 157, y: 470, width: 100, height: 150))
Buttonb.addTarget(self, action: #selector(didTapButtonValidate), for: .touchUpInside)
Buttonb.setTitle( "save", for: .normal)
Buttonb.addTarget(self, action: #selector(didTapButtonValidate), for: .touchUpInside)
return Buttonb
}()
private let returnButton = UIButton()
public var completionHandler: ((String, Date) -> Void)?
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .systemTeal
view.addSubview(field)
view.addSubview(Buttonb)
field.becomeFirstResponder()
field.delegate = self
let picker = UIDatePicker()
picker.datePickerMode = .time
picker.timeZone = NSTimeZone.local
picker .frame = CGRect(x: 10,y : 50, width: self.view.frame.width, height: 200)
self.view.addSubview(picker)
title = "New timer"
navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Dismiss",
style: .plain,
target: self,
action: #selector(dismissSelf))
returnButton.setTitle("Push Another controller", for: .normal)
view.addSubview(returnButton)
returnButton .backgroundColor = .white
returnButton.setTitleColor(.black, for: .normal)
returnButton.frame = CGRect(x: 100, y: 100, width: 200, height: 52)
returnButton.addTarget(self, action: #selector(didTapreturmButton), for: .touchUpInside)
}
@objc private func didTapButtonValidate( sender: UIButton) {
if let text = field.text, !text.isEmpty {
// the mistake "Cannot find 'picker' in scope" is displayed just below
let pickedDatetime = picker.time
completionHandler?(text, pickedDatetime)
navigationController?.popToRootViewController(animated: true)
}
}
@objc private func didTapreturmButton(){
let vc = SecondViewController()
vc.view.backgroundColor = .white
navigationController?.pushViewController(vc, animated: true)
}
@objc private func dismissSelf() {
dismiss(animated: true, completion: nil)
}
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
textField.resignFirstResponder()
return true
}
}```
When I add the function over the override func like that
```Swift
private let picker = UIDatePicker {
picker.datePickerMode = .time
return picker
}()
```
**** I get the error message "No exact matches in call to initializer " which I don't understand either. However the other error message disappears afterwards. Does anyone know how to fix this problem?
Thanks in advance****
Post not yet marked as solved
Hi there. By running flutter build ios --release command in flutter in Visual Studio Code IDE, this error came out and unable to build the file successfully.
error: No profiles for 'com.vavia.coimbee' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.vavia.coimbee'. Automatic signing is disabled and unable to generate a profile. To enable automatic signing, pass -allowProvisioningUpdates to xcodebuild. (in target 'Runner' from project 'Runner')
Appreciate if there are any suggestions to resolve this issue. Thank you in advance.
Post not yet marked as solved
Ever since myself and my boyfriend got the new iPhone 13 pro max, we can’t seem to call each other through Apple car play. We can make calls to everyone else even if they have the new phone, but we can’t call each other when calling through car play. The only way it works is if we use face time audio call. Not even Facebook messenger call works!! It’s getting a little frustrating. Does anyone else have this issue and know how to fix it?
we can however make regular phone calls to each other if we aren’t using car play
Post not yet marked as solved
Hey yall. I'm on the IOS public beta 13 with my iPhone XS. I cannot download the public beta 14 profile. When I sign into the Apple Beta Program, the bubble to click on (download profile) is whited out and I can see it says (requires ios device to download)
I have no idea what is going on. At one point the bubble was blue with the words (download profile) but when I tapped it nothing happened and the profile (IOS Beta 14) is not in my setting under profiles.
Can someone please help me.
Post not yet marked as solved
I just did the update to Big Sur Beta 3 (20A5323l) and my keyboard brightness doesn't change at all after the very first dot when you turn up the brightness. Hoping I don't have to wait for a month without a fix!
I'm using a MacBook Pro 13" 2019, Intel i5 1.4GHz
Post not yet marked as solved
Reviews present in AppStore connect as well as in AppStore mobile app are sometimes not reflected in AppStore website.
Attached is an example of Onescore-credit score insight,
Image of appstore connect,
One score AppStore link
I have attached the image of AppStore reviews in AppStore connect and a link to the AppStore website. Most of the reviews present in AppStore connect are not reflected on the AppStore website.
Please check this issue ASAP.
Regards,
Kiruthika