2bf09f8e2d
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
71 lines
1.8 KiB
Groovy
71 lines
1.8 KiB
Groovy
buildscript {
|
|
ext {
|
|
activityVersion = '1.4.0'
|
|
annotationsVersion = '1.3.0'
|
|
appcompatVersion = '1.4.0'
|
|
biometricVersion = '1.1.0'
|
|
collectionVersion = '1.2.0'
|
|
constraintLayoutVersion = '2.1.2'
|
|
coordinatorLayoutVersion = '1.1.0'
|
|
coreKtxVersion = '1.7.0'
|
|
coroutinesVersion = '1.6.0'
|
|
datastoreVersion = '1.0.0'
|
|
desugarVersion = '1.1.5'
|
|
fragmentVersion = '1.4.0'
|
|
jsr305Version = '3.0.2'
|
|
junitVersion = '4.13.2'
|
|
lifecycleRuntimeKtxVersion = '2.4.0'
|
|
materialComponentsVersion = '1.4.0'
|
|
preferenceVersion = '1.1.1'
|
|
zxingEmbeddedVersion = '4.3.0'
|
|
|
|
groupName = 'com.wireguard.android'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "de.undercouch.download" version "4.1.2"
|
|
}
|
|
|
|
task downloadCrowdin(type: Download) {
|
|
src 'https://crowdin.com/backend/download/project/wireguard.zip'
|
|
dest file('build/translations.zip')
|
|
overwrite true
|
|
}
|
|
|
|
task cleanCrowdin(type: Delete) {
|
|
delete 'ui/src/main/res/values-*/strings.xml'
|
|
}
|
|
|
|
task extractCrowdin(type: Copy, dependsOn: ['downloadCrowdin', 'cleanCrowdin']) {
|
|
mustRunAfter 'downloadCrowdin'
|
|
from zipTree(file('build/translations.zip'))
|
|
into file('build/translations')
|
|
doFirst {
|
|
delete 'build/translations'
|
|
}
|
|
}
|
|
|
|
task crowdin(type: Copy, dependsOn: ['extractCrowdin']) {
|
|
mustRunAfter 'extractCrowdin'
|
|
from 'build/translations/wireguard-android/ui/src/main/res'
|
|
into 'ui/src/main/res/'
|
|
doLast {
|
|
delete 'build/translations'
|
|
delete 'build/translations.zip'
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
tasks {
|
|
wrapper {
|
|
gradleVersion = "7.3.3"
|
|
distributionSha256Sum = "b586e04868a22fd817c8971330fec37e298f3242eb85c374181b12d637f80302"
|
|
}
|
|
}
|
|
|
|
apply from: "version.gradle"
|