mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
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.
67 lines
1.6 KiB
67 lines
1.6 KiB
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' |
|
} |
|
|
|
|