1. Create a new "Hello World" application in Android Studio.
2. Build and compile a project.
3. Create a Github repository for this project. You can follow the instructions here.
Please note - during the project creation, do not mark to create any files on your behalf, just leave all checkboxes empty like this one:

4. Open terminal in Android Studio and run:
mkdir -p .github\workflows && cd .github\workflows && copy NUL test.yaml
5. Create first commit (we just want to verify our local copy is synced with remote). From the app root folder, open terminal and run:
Note: pay attention to change a path to Github repository in the next script
git init
git add .
git commit -m "Initial commit"
git remote add origin <path to your repository i.e. git@github.com:rtokun/test-111.git>
git push origin main
If you wasn't able to commit and push please see troubleshooting here or ask for help in our Telegram Channel or Facebook Group.
Add project.Manifest.xml file).Add app: 
Android and follow the wizard. Complete the wizard including downloading the google-services.json file and putting it inside the app folder, and modifying the Gradle files.This token allows to 3rd party applications to get access to the Firebase project and make operations. We will use this token in the workshop. To get one we need to install the Firebase console client on our local computer and login via client to our Firebase account.
Open terminal and enter
curl -sL https://firebase.tools | bash
firebase command.firebase login:ci
It will open the browser with the Authentication page. Enter your credentials and after successful authentication go back to your terminal window, you should see there your token:
✔ Success! Use this token to log in on a CI server:
1//03UkAUZpVhigPCgYIARAAGsotbjnrtl;ghkjnrts;lhkjntw;lhknrt;lhbknwrtl;khn;wlr0VcRQiYGtZSpo7DP1aS7X5OdCVJys
Android Studio -> Settings/Preferences -> Version Control -> GitHub. + button. Use token and paste your token.