Search results for

4.3

585 results found

Post

Replies

Boosts

Views

Activity

Add resources in Swift Playgrounds 4
How to link binary resources folder in package.swift file from Swift Playgrounds. Given that I cant manually edit the package.swift file. How do I navigate to resolve this? Currently, my targets looks like this: targets: [ .executableTarget( name: AppModule, path: . ) ] I would like to link the resources folder like this: targets: [ .executableTarget( name: AppModule, path: ., resources: [ .process(Resources) ] ) ] Playground Version: 4.3 Please let me know. I am few hours away from the swift student challenge submission. Kindly acknowledge. PLEASE HELP!!!
1
0
1.7k
Apr ’23
complaint about the fake activities of two app creators
I am writing to make a complaint about the fake activities of two app creators , which you should take a serious action against them. PDF Scanner & Editor + (https://apps.apple.com/us/developer/hq-tools/id1676624003) Good PDF Editor (https://apps.apple.com/us/developer/khelp-tim-tov/id1650247356) Previously, I had reported these two apps, (https://developer.apple.com/forums/thread/718992 ) and now again. These two apps are using spamming strategies and tries to exploit App Store leaks on their marketing. 

 These two apps are exactly same as each other, and it has been creating by one creator, With Different name, But even the seller name has same pattern, Both has TOV expression at the end, It is obviously shown these two apps which are exactly same as each other, has one Creator. Seller: SKOL LTD, TOV Seller: KHELP TIM, TOV Recently Appstore took an action against a leak of the Appstore and those creators who used the word Good in the title of their App Event or name of the app, Now if you look at these
2
0
839
Apr ’23
About guideline 4.3 Design - spam
Our team members are so upset and exhuasted about the guideline 4.3. We have spent 60 days on the app submission but still get no luck to be approved and no black and white instruction to improve. We post here for intelligent solution.This is our situation -We are developing an IOT project ( a digital photo frame ), the end-products of this project is: a digital photo frame and the APP.The APP is simply a photo/video transmission tool which transmit the media on the phone to users' digital photo frame.Here comes the issue:1. We have our own branding digital photo frames products and our own app on the market.2. We are also the OEM of other digital photo frames products which have different brands from us. Our clients need the full solution - their own branding app which have very similar functions with our own branding app( this breaches the annoying and irrational guideline 4.3)What we have done:1. Completely new design of home page / splashscreen / app icon / app description / app name.2.
11
0
8.4k
Mar ’23
reject by guideline 4.3 Design - spam
my Chinese Chess Game be rejected 2 times. the reason: We continued to notice that your app provides the same feature set as other apps submitted to the App Store; it simply varies in content or language, which is considered a form of spam. What I'm more curious about is where is the measurement standard for this sentence? According to this reply same feature set as other apps , should APPLE STORE have only one chess games, and the others are considered spam? but why there are so many Chess game there? do they have different features? based on that reply, I think, I am not a chess player. or I am not playing IOS chess game. my APP should be the strongest AI already. have Large End Game Database for play. have self define board for play With AI. any suggestion of make different features set?
5
0
1.2k
Aug ’24
4.3 spam
my app was creating problem with deseign spam but somehow i managed to make it work and get accepted by apple store but now while updating it, it still showing same issue 4.3 spam I am totally pissed off and losing hope for my business, can anybody have any solution
2
0
1.6k
Mar ’23
4.3 Spam Guidelines
Hi - After having spoken with Apple directly regarding 4.3 Spam Guidelines, (they were no help), I'd like to put this out to apple developer community for thoughts and feedback. Our business operates in such a way that it requires our customer to have their own branded app/experience. As we all know, managing multiple Apple Developer accounts, codebases, QA testing processes is an absolute nightmare and we would like to avoid this if possible. I don't think we can, but seemingly, other companies have not followed these guidelines and their apps are still in the AppStore, for now... https://apps.apple.com/us/developer/yardi-systems-inc/id425728804?see-all=i-phone-apps https://apps.apple.com/au/developer/buildinglink-com/id355921358?see-all=i-phonei-pad-apps How is this so? Are these companies infringing on these guidelines? How are they 'getting away with this'? Is it just a matter of time before Apple comes down hard on these companies for their app listings? And what is the best advice moving forwar
2
0
1.1k
Mar ’23
Reply to Apple did not specify what's wrong with my app and how many days should I wait
They rejected and reviewed it twice ( I did not submit anything). This is what I got after the status was changed several times: Hello, Thank you for your continued patience. We are writing to let you know that we have completed our evaluation of your app and account. Upon further review, we found that your app does not comply with the following guidelines: Guideline 4.3 - Design - Spam Your app has similar features to others. As such, it duplicates the content and functionality of many other similar apps currently available on the App Store. While these app features may be useful, informative or entertaining, we simply have enough of these types of apps on the App Store, and they are considered a form of spam. Next Steps We encourage you to review your app concept and incorporate different content and features that are in compliance with the App Store Review Guidelines. You can avoid delays to future submissions by ensuring your apps don’t attempt to mislead or harm customers or undermine the review
Jan ’23
Reply to 1 month under review
update Ok so i received another notice saying im violation the spam policy i deleted the duplicate submission, im not sure what the problem is now. maybe they didnt see the duplicate was deleted i replied back on the app store connect site clarifying Guideline 4.3 - Design We noticed that your app provides the same feature set as other apps submitted to the App Store; it simply varies in content or language, which is considered a form of spam. app id 1665868224
Jan ’23
Why Doesnt this Wrap Correctly?
struct TideForecastInfoView: View { var geometryProxy: GeometryProxy var body: some View { VStack { getHeaders(geometryProxy) TideForecastEntryView(geometryProxy: geometryProxy) .padding(2) } .background(.white) .clipShape(RoundedRectangle(cornerRadius: 14)) .shadow(radius: 8) } @ViewBuilder func getHeaders(_ geometryProxy: GeometryProxy) -> some View { HStack { HStack { Text(tide) .frame(maxWidth: geometryProxy.size.width * 0.25) Text(time) .frame(maxWidth: geometryProxy.size.width * 0.5) Text(height) .frame(maxWidth: geometryProxy.size.width * 0.25) } .padding(8) } .frame(maxWidth: .infinity) .background(.gray) } } struct TideForecastEntryView: View { var geometryProxy: GeometryProxy var body: some View { HStack { Text(High Tide) .frame(maxWidth: geometryProxy.size.width * 0.25) Text(1:08 AM (Tue 03) January) .frame(maxWidth: geometryProxy.size.width * 0.5, alignment: .leading) Text(1.31 m (4.3 ft)) .frame(maxWidth: geometryProxy.size.width * 0.25) } } } Result looks like this 03 should be on th
1
0
787
Jan ’23
Reply to Why Doesnt this Wrap Correctly?
I could not get it wrapping at the right place. It looks like SwiftUI wraps to balance as much as possible to have same length text on both lines. No way to directly ask for a lineBreakMode, unless you go through UIViewRepresentable https://stackoverflow.com/questions/58469001/how-can-i-get-text-to-wrap-in-a-uilabel-via-uiviewrepresentable-without-having/58474880#58474880 . how to vertical align top for text High Tide Declare in the HStack (see below) I tested with a longer text just to check Text(1:08 AM (Tue 03) January and more) Why do you define explicit GeometryProxy var ? How to you call to initialise (in SceneDelegate for instance). I changed as follows to be able to test struct TideForecastInfoView: View { // var geometryProxy: GeometryProxy var body: some View { GeometryReader { geometryProxy in VStack { getHeaders(geometryProxy) TideForecastEntryView() // geometryProxy: geometryProxy) .padding(2) } .background(.white) .clipShape(RoundedRectangle(cornerRadius: 14)) .shadow(radius: 8) } } @ViewBuilder
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jan ’23
Whitelabelled app built from open source refused with 4.3 "Spam"
Hi, I've built my own Collaboration/Messenger App based on Rocket.Chat from the open source, bound to my server and necessary to receive push notifications from my server. My app was refused today with: Guideline 4.3 - Design We noticed that your app provides the same feature set as other apps submitted to the App Store; it simply varies in content or language, which is considered a form of spam. The next submission of this app may require a longer review time, and this app will not be eligible for an expedited review until this issue is resolved. Guideline 4.2 - Design - Minimum Functionality We found that the usefulness of your app is limited because it seems to be intended for a small, or niche, set of users. I'm pretty puzzled. Regarding 4.2, how should I deploy an app to potential 250 users of my sports club if not via the AppStore. This is not a company where BusinessManager etc. can be used, I have no control over any devices. But finally 4.3 ... what I read my understanding of Spam i
1
0
612
Dec ’22
App update rejected as spam
Our app serial, TaxFreeway, is a Canadian T1 tax return preparing app approved by Canada Revenue Agency. There is a new app release each year for the corresponding year's tax return. We have more than 10 existing Apps (for every previous years) listed on App Store. The App for tax year 2021, TaxFreeway 2021, is listed at Canada government website below. https://www.canada.ca/en/revenue-agency/services/e-services/e-services-individuals/netfile-overview/certified-software-netfile-program/detailed-information-taxfreeway.html Apple App Store has accepted the App since December 2021. We recently send a new app update to Apple App Store based on Canada Revenue Agency's latest requirements. The update is rejected by App Store review by following reason: Thank you for your resubmission. However, upon further review, we found that your app is out of compliance with the following guideline(s): Guideline 4.3 - Design We noticed that your app provides the same feature set as other apps submitted to the App Store
1
0
675
Dec ’22
Reply to Notarytool doesn't recognise my zip as a zip
Could it be the size of the zip? I think that’s it. Historically there have been 32-bit limits on zip archives. These were fixed with ZIP64 but it’s possible that notarytool didn’t get the memo. To test this I created a 4.3 GB file full of random numbers: % dd if=/dev/random of=random.dat bs=1024 count=4199218 I added it to my app and then resigned it. % mv random.dat Test718887.app/Contents/Resources % codesign -s Developer ID Application -f -o runtime Test718887.app I then zipped and notarised it as above. This time around, I saw the error you’re seeing: % notarytool-submit Test718887.zip Conducting pre-submission checks for Test718887.zip and initiating connection to the Apple notary service... Error: Test718887.zip must be a zip archive (.zip), flat installer package (.pkg), or UDIF disk image (.dmg) Note notarytool-submit is an alias that expands to xcrun notarytool submit CREDENTIALS. That seems kinda wonky to me and I recommend that you file a bug about it. Please post your bug number, just fo
Topic: Code Signing SubTopic: Notarization Tags:
Nov ’22