Unstable build 1.11.109. Signed-off-by: Denton Gentry <dgentry@tailscale.com>
56 lines
1.1 KiB
Groovy
56 lines
1.1 KiB
Groovy
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.6.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
defaultConfig {
|
|
minSdkVersion 22
|
|
targetSdkVersion 29
|
|
versionCode 50
|
|
versionName "1.11.109-798b0da4703-g480b1a62eb2"
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility 1.8
|
|
targetCompatibility 1.8
|
|
}
|
|
flavorDimensions "version"
|
|
productFlavors {
|
|
fdroid {
|
|
// The fdroid flavor contains only free dependencies and is suitable
|
|
// for the F-Droid app store.
|
|
}
|
|
play {
|
|
// The play flavor contains all features and is for the Play Store.
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.core:core:1.2.0"
|
|
implementation "androidx.browser:browser:1.2.0"
|
|
implementation "androidx.security:security-crypto:1.1.0-alpha03"
|
|
implementation ':ipn@aar'
|
|
|
|
// Non-free dependencies.
|
|
playImplementation 'com.google.android.gms:play-services-auth:18.0.0'
|
|
}
|