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
966 B
36 lines
966 B
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '26.0.2'
|
|
|
|
defaultConfig {
|
|
applicationId "security.pEp"
|
|
minSdkVersion 19
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
sourceSets {
|
|
main {
|
|
assets.srcDirs = ['assets']
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
compile 'com.android.support:appcompat-v7:23.4.0'
|
|
compile project(':pEpJNIAdapter')
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.jakewharton:butterknife:8.0.1'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.0.1'
|
|
compile 'com.karumi:dexter:2.3.1'
|
|
compile group: 'net.lingala.zip4j', name: 'zip4j', version: '1.3.1'
|
|
}
|
|
|