0
0
mirror of https://github.com/schwabe/ics-openvpn.git synced 2024-09-20 03:52:27 +02:00
openvpn-android/tlsexternalcertprovider/build.gradle

63 lines
1.5 KiB
Groovy

/*
* 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
}
ext {
bouncycastleVersion = '1.49'
}
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
}
lint {
abortOnError false
}
namespace 'de.blinkt.externalcertprovider'
buildFeatures {
aidl true
}
// This is just a demo package, don't care about it being perfect
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation (
//'org.bouncycastle:bcprov-jdk15on:' + bouncycastleVersion,
//'org.bouncycastle:bcprov-ext-jdk15on:' + bouncycastleVersion,
//'org.bouncycastle:bcpkix-jdk15on:' + bouncycastleVersion,
'org.bouncycastle:bcmail-jdk15on:' + bouncycastleVersion,
//'org.bouncycastle:bcpg-jdk15on:' + bouncycastleVersion
)
testImplementation 'junit:junit:4.12'
}