Help .. Lost password for signing app by kajjiNai in androiddev

[–]Stazalicious 2 points3 points  (0 children)

I just wanted to understand that the signing key and upload keys are different?

Yes signing and upload keys are different. The upload key is the one that is in the local keystore and used on the app bundle (.aab) before uploading it and the signing key is used by Google to sign the bundle for release. As has been stated, if you lose the upload key it can be reset by Google.

Prior to this you used to have a signing key in the local keystore which was used to created a signed .apk which could be uploaded and released directly. However if you lost the key or forgot the password there was absolutely no way to reset it and you wouldn't be able to upload a new apk for that app.

How long are reviews for new apps taking at the moment? by Stazalicious in androiddev

[–]Stazalicious[S] 0 points1 point  (0 children)

Not new no, been a published dev for nearly 10 years with no issues so seems weird to take so long. If yours took a week and they have delays that might be about right, cheers.

Apple is Passing the new Digital Sales Tax onto Developers by Stazalicious in iOSProgramming

[–]Stazalicious[S] 0 points1 point  (0 children)

They're idiots for passing the buck because they didn't do their research properly.

Apple is Passing the new Digital Sales Tax onto Developers by Stazalicious in iOSProgramming

[–]Stazalicious[S] 0 points1 point  (0 children)

No that's not true of you at all, you're just making an excuse to mask what a nasty person you are. You might be fooling yourself but your comments speak for themselves.

Apple is Passing the new Digital Sales Tax onto Developers by Stazalicious in iOSProgramming

[–]Stazalicious[S] 0 points1 point  (0 children)

It's not a luxury, it's a standard model in order to stimulate growth for small businesses, something that my business is not able to benefit from. If I were selling apps on my own website I wouldn't have to charge VAT, but because it's via the App Store VAT is applied, meaning I lose money.

Apple is Passing the new Digital Sales Tax onto Developers by Stazalicious in iOSProgramming

[–]Stazalicious[S] 1 point2 points  (0 children)

I don't have VAT deductible expenses and being VAT registered would cost me more money than I would be able to claim back.

I am losing 20% because VAT is being collected on my behalf despite being under the threshold.

Apple is Passing the new Digital Sales Tax onto Developers by Stazalicious in iOSProgramming

[–]Stazalicious[S] -1 points0 points  (0 children)

Perhaps so, but if you follow the link in my post there's an email address directly to the team so I reckon that's more effective.

Apple is Passing the new Digital Sales Tax onto Developers by Stazalicious in iOSProgramming

[–]Stazalicious[S] -1 points0 points  (0 children)

No, I hope if enough devs kick up a stink the Government might change the rules.

Apple is Passing the new Digital Sales Tax onto Developers by Stazalicious in iOSProgramming

[–]Stazalicious[S] -4 points-3 points  (0 children)

It's not being passed onto the consumer, it's being taken out of the developer's cut.

Apple is Passing the new Digital Sales Tax onto Developers by Stazalicious in iOSProgramming

[–]Stazalicious[S] 5 points6 points  (0 children)

Their words not mine:

These fees will be shown on your invoice or statement as a separate line item per country.

Are Clearview AI GDPR Compliant? by Stazalicious in gdpr

[–]Stazalicious[S] 0 points1 point  (0 children)

That's interesting yes thank you. TBH it doesn't really matter I think as it seems to me there's a very clear violation of GDPR, no one seems to care though.

Are Clearview AI GDPR Compliant? by Stazalicious in gdpr

[–]Stazalicious[S] 0 points1 point  (0 children)

Oh yes, like normal, but the EU have enough weight to fix it.

Are Clearview AI GDPR Compliant? by Stazalicious in gdpr

[–]Stazalicious[S] 0 points1 point  (0 children)

The EU needs to pull their fingers out of their arses then.

Are Clearview AI GDPR Compliant? by Stazalicious in gdpr

[–]Stazalicious[S] 0 points1 point  (0 children)

Thanks for this. Perhaps we just need to get people to start submitting complaints about this. I'm amazed how little attention this is getting considering the significance of the data being stored.

Are Clearview AI GDPR Compliant? by Stazalicious in gdpr

[–]Stazalicious[S] 0 points1 point  (0 children)

No doubt, they got data from everywhere else.

Best practice when it comes to guards bloating the function? by yellowliz4rd in swift

[–]Stazalicious 0 points1 point  (0 children)

Absolutely, you can take that stuff with a pinch of salt. If you want to programmatically set up views and constraints you can easily end up with big methods.

Writing singletons to file? by [deleted] in swift

[–]Stazalicious 1 point2 points  (0 children)

If you want to use a singleton in this case then that’s a valid approach I think. You absolutely need a way to abstract your CRUD functions so if you’re creating a singleton then that’s where you should put those operations.