Skip to content

Commit

Permalink
docs(README.md): update section headers for consistency by removing r…
Browse files Browse the repository at this point in the history
…edundant phrases to enhance readability
  • Loading branch information
alisaitteke committed Nov 23, 2024
1 parent 2c082f6 commit b046f92
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async function main() {

## 🎨 Cool Things You Can Do

### 📱 Device Management (a.k.a. Phone Whispering)
### 📱 Device Management

```typescript
const adb = new ADB();
Expand All @@ -83,7 +83,7 @@ console.log(`
`);
```

### 📦 App Management (Like a Boss)
### 📦 App Management

```typescript
// Install that awesome app you built
Expand All @@ -100,7 +100,7 @@ console.log(`📊 App Version: ${info.versionName} (${info.versionCode})`);
await adb.clearAppData('device123', 'com.your.awesome.app');
```

### 📸 Screen Capture (Say Cheese!)
### 📸 Screen Capture

```typescript
// Take a screenshot (perfect for those "it works on my machine" moments)
Expand All @@ -113,7 +113,7 @@ await adb.recordScreen('device123', './bug-in-action.mp4', 10, {
});
```

### 🔋 System Monitoring (The Spy Game)
### 🔋 System Monitoring

```typescript
// Check the battery (is it coffee break time?)
Expand All @@ -132,7 +132,7 @@ console.log(`
`);
```

### 🎮 Device Control (Power User Stuff)
### 🎮 Device Control

```typescript
// Press buttons like a pro gamer
Expand All @@ -144,7 +144,7 @@ await adb.setWifiEnabled('device123', true); // 📶 ON
await adb.setWifiEnabled('device123', false); // 📴 OFF
```

## 🎯 Error Handling (Because Stuff Happens)
## 🎯 Error Handling

```typescript
import { ADB, ADBError, DeviceNotFoundError, CommandError } from 'adb-client';
Expand All @@ -163,7 +163,7 @@ try {
}
```

## ⚙️ Configuration (For the Perfectionists)
## ⚙️ Configuration

```typescript
const adb = new ADB({
Expand Down

0 comments on commit b046f92

Please sign in to comment.