Last active
August 7, 2024 18:59
-
-
Save hernandohhoyos/434254475588a207ccceda108d91da14 to your computer and use it in GitHub Desktop.
Comandos útiles para trabajar con Android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Para las keystore que piden Android | |
keytool -genkey -v -keystore task.keystore -keyalg RSA -keysize 2048 -validity 10000 -alias tasks -storepass android -keypass android | |
keytool -genkey -v -keystore task.jks -keyalg RSA -keysize 2048 -validity 10000 -alias tasks | |
# Para virtualizar Android | |
avdmanager create avd -n MyAVD -k "system-images;android-30;google_apis;x86_64" -d pixel | |
# Instalar apks en el emulador | |
adb install H:/Game/proyectos/lista_de_tareas/tasks.apk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment