You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1017 B
36 lines
1017 B
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion '27.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "security.pEp.test"
|
|
minSdkVersion 19
|
|
targetSdkVersion 30
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
sourceSets {
|
|
main {
|
|
assets.srcDirs = ['assets']
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'androidx.appcompat:appcompat:1.3.0'
|
|
implementation project(':pEpJNIAdapter')
|
|
testImplementation 'junit:junit:4.13.2'
|
|
implementation 'com.jakewharton:butterknife:8.0.1'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.0.1'
|
|
implementation 'com.karumi:dexter:5.0.0'
|
|
implementation group: 'net.lingala.zip4j', name: 'zip4j', version: '1.3.1'
|
|
}
|
|
|