44
submitted 3 months ago* (last edited 3 months ago) by sic_semper_tyrannis@lemmy.today to c/fdroid@lemmy.ml

I have no background or knowledge on this. I would like to make an app for performance engine building that has various pages with various formulas, unit conversions, tool lists, etc. What program do I use to make an app? I've seen Surge, Bevy, and Godot but those seem to be for games.

Edit: ~~Thank you everyone for your helpful responses. Unfortunately I can only see the responses left on my post, not replys to top level responses. I think this is an instance problem and I'm trying to find out because I would love to see everyone's comments.~~ All is working now

top 40 comments
sorted by: hot top controversial new old
[-] Flatfire@lemmy.ca 23 points 3 months ago

Android Studio is the primary toolkit for developing native android apps. If you have no background in programming, there are some more visual tools like Budibase (open source) or Softr (closed source), but you are likely to run into difficulty getting them to apply logic the way you'd like.

If you're a tinkerer, then honestly I'd look into learning more about Android Studio and Kotlin, the language most used these days for app development on Android.

[-] CowsLookLikeMaps@sh.itjust.works 1 points 3 months ago

To add onto this, a good starting point is to clone the repo of an app you like from GitHub, Codeberg, GitLab, etc, then work on open issues.

[-] possiblylinux127@lemmy.zip 1 points 3 months ago

Android Studio is proprietary

[-] Flatfire@lemmy.ca 6 points 3 months ago

Imo that's fine. It's also still the best tool for learning since it's the most widely supported one, and contains the greatest amount of documentation for working with android development. It costs nothing to use, and doesn't lock you into any kind of ecosystem you can't later migrate from.

[-] gigachad@sh.itjust.works 3 points 3 months ago* (last edited 3 months ago)

Does that mean there is a free alternative?

[-] mukt@lemmy.ml 2 points 3 months ago

Time to develop one, perhaps?

[-] abominable_panda@lemmy.world 2 points 3 months ago
[-] lud@lemm.ee 2 points 3 months ago
[-] possiblylinux127@lemmy.zip 1 points 3 months ago
[-] lud@lemm.ee 1 points 3 months ago
[-] possiblylinux127@lemmy.zip 3 points 3 months ago

True, but this is F-droid. Not to mention there little reason to use vscode over vscodium.

[-] sic_semper_tyrannis@lemmy.today 1 points 3 months ago

You're spot on. I do want to make my app open source.

[-] abominable_panda@lemmy.world 1 points 3 months ago

Vscodium is basically vscode but without the proprietary stuff

[-] possiblylinux127@lemmy.zip 1 points 3 months ago

Command line tools plus fancy editor

[-] dabu@lemmy.world 1 points 3 months ago

You can use IntelliJ Community to develop Android apps with an Android plugin.

[-] allan@lemmy.world 2 points 3 months ago

Android Studio is still free, while proprietary. And Intellij community is also proprietary, pretty much the same thing?

[-] dabu@lemmy.world 2 points 3 months ago

IntelliJ has source available here under Apache-2 license. AFAIK only Pro edition is proprietary.

Android Studio has no source but there is one for Android IntelliJ plugin here.

Maybe I'm missing something but to me these cases are pretty different.

[-] allan@lemmy.world 0 points 3 months ago

Oh wow, i didn't know they opened those sources, that is nice.

[-] helenslunch@feddit.nl 1 points 3 months ago

Is there a place to sell Android apps that isn't owned by Google?

[-] Flatfire@lemmy.ca 2 points 3 months ago

As far as I'm aware, Samsung or Amazon are the only other real app "marketplaces". Most developers using Fdroid otherwise rely on donations or patreon for active development, depending on the nature of the app

[-] sic_semper_tyrannis@lemmy.today 0 points 3 months ago

Visual does sound nice but I'd rather go with something well used and stable. Is Android studio and Kotlin "open source"? I know what open source is but don't know how to make it that way or not. I've got a lot of learning to do clearly so I appreciate your help!

[-] Flatfire@lemmy.ca 2 points 3 months ago

Android Studio is just the work environment for code and app development. You could continue on to publish all your code/work as an open source application through whichever means you choose during or after the fact.

[-] sic_semper_tyrannis@lemmy.today 1 points 3 months ago

Good to know. Another comment thread was talking about how it wasn't open source

[-] Flatfire@lemmy.ca 2 points 3 months ago

When people refer to a particular piece of development aoftware as closed or open source, they are referring to the license/availability of that software's code. You can use proprietary software to produce open source code, which is the case with Android Studio. The code that makes up Android Studio is not open source, but your own work made within it can be.

In general, "open source" is a broad term that just means "can I see the code that made this?". There are differing degrees of open source software as well. The MIT license, for example, opens up code to some modification/re-use but protects some libraries. Something like a BSD or GPL license is far less restrictive, usually allowing free modification and use of the code. Android Studio falls under the Apache license, one of the more restrictive licenses that still applies copyright, and may employ proprietary libraries that cannot be modified or copied for use. Again, this ultimately isn't likely to affect your own work or projects, but it does mean there's less transparency about the tools you are using to make it.

I apologise if this is overwhelming, but the distinction is important, and I think that as a beginner it makes sense to start with where there is the most documentation and ease of entry. Once done, it's definitely easier to move towards projects that more closely align with FOSS philosophies.

[-] GissaMittJobb@lemmy.ml 17 points 3 months ago* (last edited 3 months ago)

The answers about getting started with Kotlin and Compose are good, but I'd like to offer for your consideration that your app may actually be more appropriate to build as a website. Food for thought.

[-] sic_semper_tyrannis@lemmy.today 1 points 3 months ago

It's a good point about the website and I've thought about that as well. I do want to go the app route however because I want instant offline access

[-] GissaMittJobb@lemmy.ml 4 points 3 months ago

Fair enough.

I'd say it's kind of a good time to get into Android Development - Kotlin and Compose has made it highly pleasant and productive when compared to the days of Java and Views.

[-] sic_semper_tyrannis@lemmy.today 2 points 3 months ago

That's great to hear and know I wouldn't be learning a depreciated language. Thank you!

[-] CowsLookLikeMaps@sh.itjust.works 1 points 3 months ago

Worth considering a PWA too.

[-] harry315@feddit.de 16 points 3 months ago
[-] sic_semper_tyrannis@lemmy.today 2 points 3 months ago

Thank you, those look like great resources! Android Studio has a flatpak too which is great

[-] Tyoda@lemm.ee 7 points 3 months ago

Godot can be used for any app, not just games. (Same goes for the other engines, I assume.) Though I can't say if you would have an easier time picking it up, rather than the traditional Java or Kotlin route.

[-] sic_semper_tyrannis@lemmy.today 2 points 3 months ago

Good to know. Maybe I'll tinker around with Kotlin I hear so much about as well as Godot and see what comes to me more intuitively

[-] can@sh.itjust.works 6 points 3 months ago

Thank you everyone for your helpful responses. Unfortunately I can only see the responses left on my post, not replys to top level responses.

Check your account language settings. Make sure undetermined and English are both selected.

[-] sic_semper_tyrannis@lemmy.today 3 points 3 months ago

That worked! Thank you so much! I was getting pretty disheartened about Lemmy but now it's all good

[-] can@sh.itjust.works 2 points 3 months ago

Oh good! Glad I could help.

[-] foremanguy92_@lemmy.ml 1 points 3 months ago

Would say to you to use flutter, with VsCodium ๐Ÿ‘

[-] xsoulp@lemmy.ml 1 points 3 months ago
[-] sic_semper_tyrannis@lemmy.today 1 points 3 months ago

Looks like a good option. Thank you

[-] ikidd@lemmy.world 0 points 3 months ago

Android Studio is probably the right way, but it's a steep learning curve.

I've successfully built apps using B4A: https://www.b4x.com/ and it's a hell of a lot easier. Good documentation.

this post was submitted on 08 Jun 2024
44 points (89.3% liked)

F-Droid

7418 readers
1 users here now

F-Droid is an installable catalogue of FOSS (Free and Open Source Software) applications for the Android platform. The client makes it easy to browse, install, and keep track of updates on your device.

Website | GitLab | Mastodon

Matrix space | forum | IRC

founded 3 years ago
MODERATORS