this post was submitted on 02 Apr 2026
18 points (100.0% liked)

Open Source

45875 readers
156 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 6 years ago
MODERATORS
 

I've been building an app for some time and I'm interested in open sourcing it. I've searched the net but I haven't found a good thorough guide on how to open source an app. So, besides choosing a place to put my code (github etc), what are some other advice you can give me in order to do it right? Thanks in advance

you are viewing a single comment's thread
view the rest of the comments
[–] onlinepersona@programming.dev 9 points 9 hours ago (2 children)

Codeberg or gitlab as a source forge. Depending on how private you are, you can start a fresh git repository, then your private history won't be exposed.

Otherwise, a license and gitignore file and you're done. Maybe a README if you fancy. And if you want to go overboard, add the apk or request for it to be put on F-Droid

[–] breakcore@discuss.tchncs.de 6 points 7 hours ago

Always a README I would say.

First paragraph tells what the app does im clear terms.

Also, screenshots.

[–] ByteMe@lemmy.world 2 points 6 hours ago (1 children)

Do I have to sign the apk? I haven't found any clear answer on that.

[–] onlinepersona@programming.dev 2 points 1 hour ago (1 children)

Yep, signing is mandatory, according to the docs. It's necessary for updating the app. You don't have to use Google, you can self-sign it.

[–] ByteMe@lemmy.world 2 points 13 minutes ago

Good. Thank you