mirror of https://github.com/M66B/NetGuard.git
74 lines
1.7 KiB
Groovy
74 lines
1.7 KiB
Groovy
apply plugin: 'com.android.model.application'
|
|
|
|
model {
|
|
android {
|
|
compileSdkVersion = 23
|
|
buildToolsVersion = "23.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "eu.faircode.netguard"
|
|
minSdkVersion.apiLevel 14
|
|
targetSdkVersion.apiLevel 23
|
|
versionCode = 2016022601
|
|
versionName = "0.97"
|
|
archivesBaseName = "NetGuard-v$versionName-$versionCode"
|
|
|
|
buildConfigFields {
|
|
create() {
|
|
type "int"
|
|
name "VALUE"
|
|
value "1"
|
|
}
|
|
}
|
|
}
|
|
|
|
ndk {
|
|
platformVersion = "14"
|
|
moduleName = "netguard"
|
|
toolchain = "clang"
|
|
ldLibs.add("log")
|
|
}
|
|
|
|
sources {
|
|
main {
|
|
jni {
|
|
source {
|
|
srcDir "src/main/jni/netguard"
|
|
}
|
|
exportedHeaders {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
useProguard = true
|
|
proguardFiles.add(file('proguard-rules.pro'))
|
|
ndk {
|
|
debuggable true
|
|
}
|
|
}
|
|
debug {
|
|
useProguard false
|
|
ndk {
|
|
debuggable true
|
|
}
|
|
}
|
|
}
|
|
|
|
productFlavors {
|
|
create("all") {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:23.1.+'
|
|
compile 'com.android.support:recyclerview-v7:23.1.+'
|
|
compile 'com.squareup.picasso:picasso:2.5.+'
|
|
}
|