this post was submitted on 26 Sep 2023
24 points (100.0% liked)

No Stupid Questions

35196 readers
1104 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 1 year ago
MODERATORS
 

I noticed on github that some developers offer to download the app from Google Play without offering other options to download the compiled file ( the compiled file is missing on github too ).

This does not only apply to applications that are in beta. Why is that?

top 8 comments
sorted by: hot top controversial new old
[–] CameronDev@programming.dev 24 points 11 months ago (1 children)

Cost. Not financial, time. I have to release on Google Play, because everyone is there, so its the easiest place to attract users. Adding fdroid or whatever else doubles the amount of time and effort i have to spend on releasing my app. Even creating a release on github isnt free in terms of time and effort.

[–] KeepFlying@lemmy.world 3 points 11 months ago* (last edited 11 months ago)

Also why bother releasing a plain old APK when someone can use apkmirror to grab it manually. Though at least adding an APK is relatively easy.

And if you are releasing the app manually you need some handling for updates (or informing users to install an update on their own). At least in Google Play users tend to stay relatively up to date. Otherwise any time someone reaches out about an issue you'll be more likely to find them on older versions, wasting a bit of your time.

[–] planish@sh.itjust.works 16 points 11 months ago

Getting stuff onto F-Droid is hard; you have to design for their build system.

Google Play has a thing where if you design for their build system, they will do all the builds and hold the signing keys. So then you don't have to worry about keeping a signing key safe from various malicious government agencies.

[–] simple@lemm.ee 8 points 11 months ago

I guess it's just more convenient, though it's really rare that a dev doesn't share the apk files on Github

[–] southsamurai@sh.itjust.works 7 points 11 months ago

I've got a cousin that does exactly that, and it's like everyone already said; maintaining multiple "stores" takes more time than it's worth usually.

Now, he did say that some apps are better off not being on the play store because the use case is for people that are more FOSS oriented, and/or do things that Google doesn't like (like anything that fucks with ads as an example). But his stuff is like a lot of the open source on the play store; he does it because he's willing to share things he makes for himself, but isn't willing to jump through multiple hoops to share it.

And, open source or not, if someone wants to get paid for their apps, there's only two realistic places to publish them; play store and amazon store. The amazon route is a joke for any developer I've ever talked to.

Oh, as an aside, I did ask my cousin if he'd just send me the APKs for the ones he's done. His response? Git gud nub. Told me to compile or die lol.

[–] BURN@lemmy.world 7 points 11 months ago

Not everyone wants to maintain multiple release branches. They’re offering the app in the way the majority of users will install it, and unfortunately your use case is less common.

[–] sam@lemmy.ca 6 points 11 months ago* (last edited 11 months ago) (1 children)
[–] MoreThanCorrect@lemmy.world 4 points 11 months ago

I think a big value to these questions are when someone who does OPs question responds with their reasoning. This might get better responses in a programming or mobile community but they kind of did by posting.