Skip to content

Commit 9d321d7

Browse files
committed
Merge branch 'master' into playstore
2 parents 430f9eb + d190e37 commit 9d321d7

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
Releases available at https://github.com/emanuele-f/PCAPdroid/releases
44

5+
## [1.8.1] - 2025-03-04
6+
- Fix crash on capture start if the geolocation db was downloaded
7+
58
## [1.8.0] - 2025-03-03
69
- Android 15 support with edge-to-edge UI
710
- Decrypt TLS traffic in PCAP/Pcapng files (Wireshark integration)

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ android {
1616
minSdkVersion 21
1717
compileSdk 35
1818
targetSdk 35
19-
versionCode 79
20-
versionName "1.8.0"
19+
versionCode 80
20+
versionName "1.8.1"
2121

2222
// only include full translations
2323
// NOTE: keep in sync with locales_config.xml

app/proguard-rules.pro

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44

55
# some classes are required by the native code, keep them all for now
66
-keep class com.emanuelef.remote_capture.** { *; }
7-
-keep class com.pcapdroid.mitm.** { *; }
7+
-keep class com.pcapdroid.mitm.** { *; }
8+
-keep class com.maxmind.db.** { *; }

0 commit comments

Comments
 (0)