Skip to content

Commit 3feedb7

Browse files
authored
Merge pull request #32
Improve QR code flow & permissions, and update lots of assorted build config & Android API usage
2 parents ea0d026 + 2c206b4 commit 3feedb7

17 files changed

+396
-299
lines changed

app/build.gradle

-85
This file was deleted.

app/build.gradle.kts

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
plugins {
2+
alias(libs.plugins.android.application)
3+
alias(libs.plugins.kotlin.android)
4+
id("kotlin-parcelize")
5+
}
6+
7+
android {
8+
namespace = "tech.httptoolkit.android"
9+
compileSdk = 35
10+
11+
defaultConfig {
12+
applicationId = "tech.httptoolkit.android.v1"
13+
minSdk = 21
14+
targetSdk = 34
15+
versionCode = 34
16+
versionName = "1.5.0"
17+
18+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
19+
20+
manifestPlaceholders["sentryEnabled"] = "false"
21+
manifestPlaceholders["sentryDsn"] = "null"
22+
}
23+
24+
buildTypes {
25+
release {
26+
isMinifyEnabled = false
27+
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
28+
29+
manifestPlaceholders["sentryEnabled"] = "true"
30+
manifestPlaceholders["sentryDsn"] = "https://[email protected]/1809979"
31+
}
32+
}
33+
34+
35+
compileOptions {
36+
sourceCompatibility = JavaVersion.VERSION_11
37+
targetCompatibility = JavaVersion.VERSION_11
38+
}
39+
40+
kotlinOptions {
41+
jvmTarget = "11"
42+
}
43+
44+
buildFeatures {
45+
viewBinding = true
46+
buildConfig = true
47+
}
48+
lint {
49+
lintConfig = file("./lint.xml")
50+
}
51+
}
52+
53+
dependencies {
54+
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
55+
implementation(libs.kotlin.stdlib.jdk7)
56+
implementation(libs.kotlin.reflect)
57+
implementation(libs.kotlinx.coroutines.core)
58+
implementation(libs.kotlinx.coroutines.android)
59+
implementation(libs.appcompat)
60+
implementation(libs.core.ktx)
61+
implementation(libs.constraintlayout)
62+
implementation(libs.localbroadcastmanager)
63+
implementation(libs.zxing.android.embedded) { isTransitive = false }
64+
implementation(libs.core)
65+
implementation(libs.klaxon)
66+
implementation(libs.okhttp)
67+
implementation(libs.material)
68+
implementation(libs.semver)
69+
implementation(libs.sentry.android)
70+
implementation(libs.slf4j.nop)
71+
implementation(libs.play.services.base)
72+
implementation(libs.installreferrer)
73+
implementation(libs.swiperefreshlayout)
74+
testImplementation(libs.junit)
75+
androidTestImplementation(libs.runner)
76+
androidTestImplementation(libs.espresso.core)
77+
}

app/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<application
3333
android:name=".HttpToolkitApplication"
3434
android:allowBackup="true"
35+
android:hardwareAccelerated="true"
3536
android:icon="@mipmap/ic_launcher"
3637
android:label="@string/app_name"
3738
android:roundIcon="@mipmap/ic_launcher_round"
@@ -100,7 +101,7 @@
100101
</intent-filter>
101102
</activity-alias>
102103

103-
<activity android:name=".ScanActivity" android:parentActivityName=".MainActivity">
104+
<activity android:name=".QRScanActivity" android:parentActivityName=".MainActivity">
104105
<meta-data
105106
android:name="android.support.PARENT_ACTIVITY"
106107
android:value=".MainActivity" />

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

+2-7
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
1616
import kotlinx.coroutines.*
1717
import tech.httptoolkit.android.databinding.AppsListBinding
1818
import java.util.*
19-
import kotlin.collections.ArrayList
20-
21-
// Used to both to send and return the current list of selected apps
22-
const val UNSELECTED_APPS_EXTRA = "tech.httptoolkit.android.UNSELECTED_APPS_EXTRA"
2319

2420
class ApplicationListActivity : AppCompatActivity(), SwipeRefreshLayout.OnRefreshListener,
2521
CoroutineScope by MainScope(), PopupMenu.OnMenuItemClickListener, View.OnClickListener {
@@ -38,8 +34,7 @@ class ApplicationListActivity : AppCompatActivity(), SwipeRefreshLayout.OnRefres
3834
override fun onCreate(savedInstanceState: Bundle?) {
3935
super.onCreate(savedInstanceState)
4036

41-
blockedPackages = intent.getStringArrayExtra(UNSELECTED_APPS_EXTRA)!!.toHashSet()
42-
37+
blockedPackages = intent.getStringArrayExtra(IntentExtras.UNSELECTED_APPS_EXTRA)!!.toHashSet()
4338
binding = AppsListBinding.inflate(layoutInflater)
4439
setContentView(binding.root)
4540

@@ -60,7 +55,7 @@ class ApplicationListActivity : AppCompatActivity(), SwipeRefreshLayout.OnRefres
6055
onBackPressedDispatcher.addCallback(this, object : OnBackPressedCallback(true) {
6156
override fun handleOnBackPressed() {
6257
setResult(RESULT_OK, Intent().putExtra(
63-
UNSELECTED_APPS_EXTRA,
58+
IntentExtras.UNSELECTED_APPS_EXTRA,
6459
blockedPackages.toTypedArray()
6560
))
6661
finish()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package tech.httptoolkit.android
2+
3+
object IntentExtras {
4+
const val SCANNED_URL_EXTRA = "tech.httptoolkit.android.SCANNED_URL"
5+
const val SELECTED_PORTS_EXTRA = "tech.httptoolkit.android.SELECTED_PORTS_EXTRA"
6+
const val UNSELECTED_APPS_EXTRA = "tech.httptoolkit.android.UNSELECTED_APPS_EXTRA"
7+
const val PROXY_CONFIG_EXTRA = "tech.httptoolkit.android.PROXY_CONFIG"
8+
const val UNINTERCEPTED_APPS_EXTRA = "tech.httptoolkit.android.UNINTERCEPTED_APPS"
9+
const val INTERCEPTED_PORTS_EXTRA = "tech.httptoolkit.android.INTERCEPTED_PORTS"
10+
}

0 commit comments

Comments
 (0)