Skip to content

Instantly share code, notes, and snippets.

View Retr0ville's full-sized avatar
💭
🧊⛷️🪵🌊☁️🦢🧊🧊⛷️🪵🧊⛷️☁️🦢🧊🧊🧊⛷️🪵🌊☁️🧊⛷️🪵🌊☁️🦢🧊

Samuel Akhaze Retr0ville

💭
🧊⛷️🪵🌊☁️🦢🧊🧊⛷️🪵🧊⛷️☁️🦢🧊🧊🧊⛷️🪵🌊☁️🧊⛷️🪵🌊☁️🦢🧊
View GitHub Profile
@Retr0ville
Retr0ville / Backup android app, data included with adb.md
Last active October 10, 2023 15:55
Backup android app, data included, with adb

Backup android app, data included, no root needed, with adb

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Don't hesitate to read comments, there are useful tips, arigato!

Fetch application APK

@Retr0ville
Retr0ville / circleci-2.1-and-travisci--eb-deployment.md
Created June 1, 2022 11:30
Testing and Deploying to AWS Elastic Beanstalk via CircleCi 2.1, ( ..and TravisCI )

Testing and Deploying to Amazon Elastic Beanstalk via CircleCi 2.1


After scouring the internet for a straight-forward way to deploy my application to Elastic beanstalk via circleCI, I figured I could help others trying to do the same with this post. Do checkout ryansimms as this method is based off his method for 2.0 which was my starting point to get this working.

First setup an AWS IAM user by following these steps (a unique user for CircleCI is recommended)

  • On AWS services search for IAM
  • Select Users (or User Groups if you wish to group deployment users together, eg. TravisCI and CircleCI)
  • Under users, Click on 'Add User'
  • Set a username and only tick Access key - Programmatic access as the Access type
  • Click on next (Set permissions), and select 'Attach existing policies directly', then search for and select AdministratorAccess-AWSElasticBeanstalk, and AmazonS3FullAccess.