How can I make a mobile game?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By toivocat

So I am making a game but I want to make it so mobile can play it. What I want to do is that I want to make a mobile version of it instead of it just being android though I want it to support all mobile platforms do you know how I can do this?

:bust_in_silhouette: Reply From: Ash_Grey

Hello !
I don’t have much experience with this, but here are two links from the Godot docs regarding mobile export.

IOS
ANDROID

Good luck !

What about doing it for the Tab7?

toivocat | 2021-08-04 19:29

The TAB is also running on Android as far as I know, and so do many brands like Xiaomi and others. Exporting for Android pretty much cover 80% of the phones out there, except for Apple devices, which you can do with IOS export.

Ash_Grey | 2021-08-05 11:20

Awesome! Thanks : )

toivocat | 2021-08-05 13:18

:bust_in_silhouette: Reply From: lewis glasgow

when you export to android, all latest android versions work with the apk but actully exporting the project is a task, but heres a step by step guide

first step:

jdk installation
just press download:

and go through installation

step 2:
if you have android sdk update it there are tutorials and if you dont have it download it here Download Android Studio & App Tools - Android Developers and go through installation steps

step 3:
copy this into cmd

keytool -keyalg RSA -genkeypair -alias androiddebugkey -keypass android -keystore debug.keystore -storepass android -dname “CN=Android Debug,O=Android,C=US” -validity 9999 -deststoretype pkcs12

step 4:
go to editor settings/android
abd: C:/Users/ your user name /AppData/Local/Android/Sdk/platform-tools/adb.exe

jdk: C:/Program Files/AdoptOpenJDK/jdk-8.0.275.1-hotspot/bin/jarsigner.exe

debug keystore: C:/Users/ your user name /debug.keystore

debug user: androiddebugkey
debug pass: android

and yayyyy your done!!!

But what I meant is make it for all mobile devices.

toivocat | 2021-08-04 15:58

I think you’re confusing Samsung with Android. Android is the operating system that’s currently being used by almost ALL mobile phones AND tablets. The only other OS that’s mainstream is IOS, the one from Apple. IOS is also for Apple phones AND tablets. So you just need to export for those two and your game will be available on all those devices.

Ash_Grey | 2021-08-05 11:24