Skip to content

Commit e4f9317

Browse files
committed
Fix typos and formatting issues
1 parent caf49fb commit e4f9317

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Looking to file bugs, request features or send feedback? File an issue or vote o
88

99
HTTP Toolkit is primarily a desktop application. This repo contains the Android app, which connects to that desktop application, and forwards HTTP traffic there.
1010

11-
The Android itself is effectively two parts:
11+
The Android app itself is effectively two parts:
1212

1313
* An outer wrapper, which shows the UI, scans QR codes, retrieves proxy config from HTTP Toolkit, ensures the device trusts HTTP Toolkit's CA certificate, and starts and stops a VPN.
1414
* A VPN, which receives every IP packet sent by the device, parses them, rewrites some of them to go to HTTP Toolkit, and then sends the parsed requests on via the real network (and forwards responses back)

app/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77
android {
88
namespace = "tech.httptoolkit.android"
9-
compileSdk = 35
9+
compileSdk = 35
1010

1111
defaultConfig {
1212
applicationId = "tech.httptoolkit.android.v1"

app/src/main/java/tech/httptoolkit/android/QRScanActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class QRScanActivity : Activity() {
4444
barcodeView!!.barcodeView.decoderFactory = DefaultDecoderFactory(listOf(BarcodeFormat.QR_CODE))
4545
barcodeView!!.initializeFromIntent(intent)
4646
barcodeView!!.decodeContinuous(callback)
47-
barcodeView!!.setStatusText("Scan HTTPToolkit QR code to connect")
47+
barcodeView!!.setStatusText("Scan HTTP Toolkit QR code to connect")
4848
}
4949

5050
override fun onResume() {

0 commit comments

Comments
 (0)