mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-19 21:05:25 +08:00
98 lines
2.9 KiB
Groovy
98 lines
2.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
ndkVersion "26.1.10909125"
|
|
|
|
defaultConfig {
|
|
applicationId "com.emanuelef.remote_capture"
|
|
minSdkVersion 21
|
|
compileSdk 34
|
|
targetSdk 34
|
|
versionCode 72
|
|
versionName "1.6.9"
|
|
|
|
buildConfigField "long", "BUILD_TIME", System.currentTimeMillis() + "L"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
debug {
|
|
// Use a different app ID for debug to allow its coexistence with release builds
|
|
applicationIdSuffix '.debug'
|
|
versionNameSuffix '-beta'
|
|
pseudoLocalesEnabled true
|
|
|
|
if(project.hasProperty("doNotStrip")) {
|
|
// NOTE: packagingOptions will also affect the "release" build, so the "doNotStrip"
|
|
// guard is required
|
|
packagingOptions {
|
|
// NOTE: unstripped nDPI library takes up about 4 MB!
|
|
//doNotStrip '**.so'
|
|
doNotStrip '**/libpcapd.so'
|
|
doNotStrip '**/libcapture.so'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
jniLibs {
|
|
// NOTE: needed to unpack libpcapd.so when installed as app bundle
|
|
useLegacyPackaging = true
|
|
}
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path file('src/main/jni/CMakeLists.txt')
|
|
version "3.22.1"
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
encoding "UTF-8"
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
sourceSets {
|
|
main.java.srcDirs += '../submodules/MaxMind-DB-Reader-java/src/main/java'
|
|
}
|
|
|
|
testOptions {
|
|
// needed by robolectric
|
|
unitTests.includeAndroidResources = true
|
|
}
|
|
namespace 'com.emanuelef.remote_capture'
|
|
}
|
|
|
|
dependencies {
|
|
// Tests
|
|
testImplementation 'junit:junit:4.13.2'
|
|
testImplementation 'androidx.test:core:1.5.0'
|
|
testImplementation "org.robolectric:robolectric:4.11.1"
|
|
|
|
// AndroidX
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.fragment:fragment:1.6.2'
|
|
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
|
|
implementation 'androidx.preference:preference:1.2.1'
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.2'
|
|
implementation "androidx.navigation:navigation-fragment:2.7.5"
|
|
implementation "androidx.navigation:navigation-ui:2.7.5"
|
|
|
|
// Google
|
|
implementation 'com.google.android.material:material:1.10.0'
|
|
implementation 'com.google.code.gson:gson:2.9.0'
|
|
implementation 'org.brotli:dec:0.1.2'
|
|
|
|
// Third-party
|
|
implementation 'cat.ereza:customactivityoncrash:2.3.0'
|
|
implementation 'com.github.KaKaVip:Android-Flag-Kit:v0.1'
|
|
implementation 'com.github.AppIntro:AppIntro:6.2.0'
|
|
implementation 'com.github.androidmads:QRGenerator:1.0.1'
|
|
}
|