From e4f9317ef851f969f8434f937c7b2293e8679116 Mon Sep 17 00:00:00 2001 From: JBadges Date: Tue, 25 Feb 2025 03:13:23 -0500 Subject: [PATCH] Fix typos and formatting issues --- README.md | 2 +- app/build.gradle.kts | 2 +- app/src/main/java/tech/httptoolkit/android/QRScanActivity.kt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 015ca7e..5d580dc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Looking to file bugs, request features or send feedback? File an issue or vote o HTTP Toolkit is primarily a desktop application. This repo contains the Android app, which connects to that desktop application, and forwards HTTP traffic there. -The Android itself is effectively two parts: +The Android app itself is effectively two parts: * 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. * 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) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 59efbc8..31c75b1 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -6,7 +6,7 @@ plugins { android { namespace = "tech.httptoolkit.android" - compileSdk = 35 + compileSdk = 35 defaultConfig { applicationId = "tech.httptoolkit.android.v1" diff --git a/app/src/main/java/tech/httptoolkit/android/QRScanActivity.kt b/app/src/main/java/tech/httptoolkit/android/QRScanActivity.kt index ebfa993..c339c23 100644 --- a/app/src/main/java/tech/httptoolkit/android/QRScanActivity.kt +++ b/app/src/main/java/tech/httptoolkit/android/QRScanActivity.kt @@ -44,7 +44,7 @@ class QRScanActivity : Activity() { barcodeView!!.barcodeView.decoderFactory = DefaultDecoderFactory(listOf(BarcodeFormat.QR_CODE)) barcodeView!!.initializeFromIntent(intent) barcodeView!!.decodeContinuous(callback) - barcodeView!!.setStatusText("Scan HTTPToolkit QR code to connect") + barcodeView!!.setStatusText("Scan HTTP Toolkit QR code to connect") } override fun onResume() {