mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
68 lines
1.6 KiB
Groovy
68 lines
1.6 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.1.2'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.0"
|
|
defaultConfig {
|
|
applicationId "org.purplei2p.i2pd"
|
|
targetSdkVersion 25
|
|
minSdkVersion 14
|
|
versionCode 1
|
|
versionName "2.17.2e"
|
|
}
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
res.srcDirs = ['res']
|
|
jniLibs.srcDirs = ['libs']
|
|
assets.srcDirs = ['assets']
|
|
}
|
|
}
|
|
signingConfigs {
|
|
orignal {
|
|
storeFile file("i2pdapk.jks")
|
|
storePassword "android"
|
|
keyAlias "i2pdapk"
|
|
keyPassword "android"
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
signingConfig signingConfigs.orignal
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
|
|
options.deprecation = true
|
|
}
|
|
|
|
task zipCerts(type:Zip) {
|
|
from (files('../contrib/'))
|
|
include 'certificates/**/*.crt'
|
|
destinationDir file('assets')
|
|
archiveName 'certificates.zip'
|
|
entryCompression ZipEntryCompression.STORED
|
|
}
|
|
preBuild.dependsOn zipCerts
|
|
|
|
task clean(type: Delete,overwrite: true) {
|
|
delete 'build'
|
|
delete 'assets'
|
|
}
|
|
|