How to Add an Application to Android TV on Google Play

How to Add an Application to Android TV on Google Play

Tiempo de lectura: 2 minutos To add an app to Android TV using Google Play, we’ll need to create an Android listing as explained in the previous POST (https://devcodelight.com/como-subir-una-app-a-google-play-console/) If we already have an app created, we’ll need to add the Android TV variant. To do this, we open our app and go to Release Here we select Setup > … Read more

Generate a release APK/AAB (for publishing) with Flutter and Visual Studio Code

Generate a release APK/AAB (for publishing) with Flutter and Visual Studio Code

Tiempo de lectura: 2 minutos Today we are going to learn how we can generate an APK or AAB to distribute or publish our application to the app store using Flutter and VS Code. We have to create an application signing file with the following command: keytool -genkey -v -keystore ~/upload-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias upload Indicate … Read more