system.cpu.idle
: % Idle CPUsystem.cpu.system
: % System CPUsystem.cpu.user
: % User CPU
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Step 1: Install required dependencies | |
echo "Installing required packages..." | |
sudo apt update | |
sudo apt install -y openjdk-11-jdk wget curl unzip cmake ninja-build | |
# Step 2: Install Android SDK Command-Line Tools | |
echo "Installing Android SDK Command-Line Tools..." |