create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| # Sample workflow for building and deploying a Next.js site to GitHub Pages | |
| # | |
| # To get started with Next.js see: https://nextjs.org/docs/getting-started | |
| # | |
| name: Check NextJs build | |
| on: | |
| # Runs on pushes targeting the default branch | |
| push: | |
| branches: ["main"] |
| /// flutter_background_geolocation Hello World | |
| /// https://github.com/transistorsoft/flutter_background_geolocation | |
| //// | |
| // For pretty-printing location JSON. Not a requirement of flutter_background_geolocation | |
| // | |
| import 'dart:convert'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_background_geolocation/flutter_background_geolocation.dart' |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| # create assets folder in the current project | |
| $ mkdir android/app/src/main/assets | |
| # create bundle script | |
| $ react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/ | |
| # execute command to run android to create debug apk | |
| $ react-native run-android | |
| # Or change to android folder |