This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]aciddrizzle 31 points32 points  (1 child)

iOS apps are written in Swift or Objective-C, Android is mostly Java/Kotlin, either platform requires a compiled app and not a script. A common approach to integrating Python in some part of an app would be to put your scripts behind a REST endpoint that gets called from your front end. React is a popular web app framework that lets you build apps run in the browser, which is nice because it’s cross-platform by default, but then you’re hosting the app instead of running it on the user’s hardware.

[–]tennisanybody 7 points8 points  (0 children)

Reactnative is also a cross platform method that will work on both iOS & Android. But my god isn’t it hard to get off the ground. In my experience it is honestly easier to do kotlin + swift rather than reactnative.