Posts

Showing posts with the label Coding

Passive income

Image
One of the ways to become financially independent is to generate income whilst you sleep, passive income. The idea is that you invest either some time or money into a certain idea or thing, and that will generate income for you without any further time or effort. This is how generally the super rich, got super rich. People only have a finite time in which to earn (governed by how much you stay awake) so if you can earn whilst you sleep or do something else, that is the dream of many people I'm sure.

Flutter - How to sign your android app

Image
I recently published my first Flutter app, and one of the hard parts as a newbie was signing and  creating the app bundle from Android studio. There is a good link here walking you through it but it didn't help with the details if you were having any issues. Here is my walkthrough on how to do create your app bundle and what to do if you had issues like me. This walkthrough is applicable to Windows. Once you're happy with your app and created a nice app icon, you're ready to sign it.  Copy and paste this command into the terminal, replacing USER_NAME with your particular username. This will create a key file. You do not need to store the key in that particular folder but just for ease of use and for finding it later. keytool -genkey -v -keystore c:\Users\USER_NAME\key.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias key   Now for me, when I input that command, it did not recognise keytool as a command. The way I fixed it was to download the new...

Flutter Introduction - Part 1

Image
Part of creating this website was to document my forage into making an app, and publishing it to the Android Play store or Apple App Store. I have never programmed and know no coding language. The idea came from a random youtube video, where it was talking about programming, and it talked about Flutter, the new coding language from Google. It supports cross platform meaning I can code it once and it should work on both Android, Apple and even Windows.