diff --git a/CHANGELOG.md b/CHANGELOG.md index e646ee086..334b0d8ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ Releases available at https://github.com/emanuele-f/PCAPdroid/releases +## [1.2.8] - 2021-01-11 +- Improve TCP connections stability with big packets +- Add chinese translation (credits: sr093906) +- Update nDPI and gradle dependencies +- Fix some crashes + ## [1.2.7] - 2021-01-07 - Fix app ID not resolved on android >= Q - Resolve system apps UIDs diff --git a/app/build.gradle b/app/build.gradle index 95348a1f8..f2a9fb7f1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,13 +2,13 @@ apply plugin: 'com.android.application' android { compileSdkVersion 29 - buildToolsVersion "29.0.0" + buildToolsVersion "29.0.2" defaultConfig { applicationId "com.emanuelef.remote_capture" minSdkVersion 19 targetSdkVersion 29 - versionCode 10 - versionName "1.2.7" + versionCode 11 + versionName "1.2.8" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { @@ -29,14 +29,15 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.appcompat:appcompat:1.1.0' - implementation 'androidx.constraintlayout:constraintlayout:1.1.3' - implementation 'androidx.preference:preference:1.1.0-alpha05' + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'androidx.constraintlayout:constraintlayout:2.0.4' + implementation 'androidx.preference:preference:1.1.1' implementation 'androidx.viewpager:viewpager:1.0.0' - implementation 'com.google.android.material:material:1.0.0' + implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0' + implementation 'com.google.android.material:material:1.2.1' testImplementation 'junit:junit:4.12' - androidTestImplementation 'androidx.test:runner:1.2.0' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' + androidTestImplementation 'androidx.test:runner:1.3.0' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' implementation project(path: ':zdtun') implementation 'cat.ereza:customactivityoncrash:2.2.0' implementation project(path: ':ndpi')