mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-04 00:00:14 -04:00
When targeting Android 15, edge-to-edge is the default and when targeting Android 16, apps can't opt-out from this anymore. So we update our views and enable edge-to-edge also for older versions (avoids the black bar behind the system UI at the bottom). For most views we just use automatic margins via android:fitsSystemWindows (or programmatically via setDecorFitsSystemWindows). However, for the profile lists and log views, we take some extra measures that allow the lists to go behind the bottom system UI. Appropriate padding is applied at the bottom of the lists so the last item(s) can be scrolled into full view.
57 lines
1.4 KiB
Groovy
57 lines
1.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
namespace 'org.strongswan.android'
|
|
|
|
defaultConfig {
|
|
applicationId "org.strongswan.android"
|
|
compileSdk 34
|
|
minSdkVersion 21
|
|
targetSdkVersion 34
|
|
|
|
versionCode 91
|
|
versionName "2.5.6"
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
arguments '-j' + Runtime.runtime.availableProcessors()
|
|
}
|
|
}
|
|
}
|
|
|
|
ndkVersion "27.2.12479018"
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
path 'src/main/jni/Android.mk'
|
|
}
|
|
}
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
compileTask ->
|
|
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
compileOptions {
|
|
targetCompatibility 1.8
|
|
sourceCompatibility 1.8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.7.1'
|
|
implementation 'androidx.core:core:1.17.0'
|
|
implementation 'androidx.lifecycle:lifecycle-process:2.9.4'
|
|
implementation 'androidx.preference:preference:1.2.1'
|
|
implementation 'com.google.android.material:material:1.13.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
testImplementation 'org.assertj:assertj-core:3.27.6'
|
|
testImplementation 'org.mockito:mockito-core:5.20.0'
|
|
}
|