0
0
mirror of https://github.com/schwabe/ics-openvpn.git synced 2024-09-19 19:42:29 +02:00
openvpn-android/tlsexternalcertprovider/build.gradle

58 lines
1.4 KiB
Groovy
Raw Permalink Normal View History

/*
* Copyright (c) 2012-2018 Arne Schwabe
* Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
*/
plugins {
alias libs.plugins.android.application
}
android {
compileSdkVersion 34
defaultConfig {
applicationId "de.blinkt.externalcertprovider"
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
2022-02-04 23:34:29 +01:00
lint {
2018-09-19 18:03:26 +02:00
abortOnError false
}
2023-04-17 14:56:49 +02:00
namespace 'de.blinkt.externalcertprovider'
buildFeatures {
aidl true
}
2022-02-04 23:34:29 +01:00
// This is just a demo package, don't care about it being perfect
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation (
// libs.org.bouncycastle.bcprov.jdk15on,
// libs.org.bouncycastle.bcprov.ext.jdk15on,
// libs.org.bouncycastle.bcpkix.jdk15on,
libs.org.bouncycastle.bcmail.jdk15on,
// libs.org.bouncycastle.bcpg.jdk15on,
)
testImplementation(libs.junit)
}