d200437813
Hopefully PreferencesPreferenceDataStore gets to go away sometime down the line. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
61 lines
1.7 KiB
Groovy
61 lines
1.7 KiB
Groovy
buildscript {
|
|
ext {
|
|
activityVersion = '1.2.0-alpha07'
|
|
agpVersion = '4.0.1'
|
|
annotationsVersion = '1.1.0'
|
|
appcompatVersion = '1.2.0'
|
|
bintrayPluginVersion = '1.8.5'
|
|
biometricVersion = '1.1.0-alpha02'
|
|
collectionVersion = '1.1.0'
|
|
constraintLayoutVersion = '2.0.1'
|
|
coordinatorLayoutVersion = '1.1.0'
|
|
coreKtxVersion = '1.3.1'
|
|
coroutinesVersion = '1.3.9'
|
|
datastoreVersion = '1.0.0-alpha01'
|
|
desugarVersion = '1.0.10'
|
|
fragmentVersion = '1.3.0-alpha07'
|
|
jsr305Version = '3.0.2'
|
|
junitVersion = '4.13'
|
|
kotlinVersion = '1.4.10'
|
|
lifecycleRuntimeKtxVersion = '2.3.0-alpha07'
|
|
materialComponentsVersion = '22973ff10305397bfc72fed41684175fee8aeefb'
|
|
mavenPluginVersion = '2.1'
|
|
preferenceVersion = '1.1.1'
|
|
zxingEmbeddedVersion = '3.6.0'
|
|
|
|
groupName = 'com.wireguard.android'
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:$agpVersion"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenPluginVersion"
|
|
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayPluginVersion"
|
|
}
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
tasks {
|
|
wrapper {
|
|
gradleVersion = "6.6.1"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
distributionSha256Sum = "11657af6356b7587bfb37287b5992e94a9686d5c8a0a1b60b87b9928a2decde5"
|
|
}
|
|
}
|
|
|
|
apply from: "version.gradle"
|