andOTP/app/build.gradle

83 lines
2.9 KiB
Groovy
Raw Normal View History

2015-11-23 21:20:14 +00:00
apply plugin: 'com.android.application'
android {
defaultConfig {
2017-06-28 08:29:18 +00:00
applicationId "org.shadowice.flocke.andotp"
2020-05-27 04:59:26 +00:00
minSdkVersion 22
targetSdkVersion 33
compileSdkVersion 33
versionCode 24091700
versionName "0.9.1.0"
2018-03-22 09:05:36 +00:00
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2015-11-23 21:20:14 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
applicationIdSuffix = ".dev"
versionNameSuffix = "-dev"
2015-11-23 21:20:14 +00:00
testCoverageEnabled = true
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
2015-11-23 21:20:14 +00:00
}
}
buildFeatures {
dataBinding = true
}
flavorDimensions 'market'
productFlavors {
fdroid {
dimension = 'market'
}
play {
dimension = 'market'
2019-10-19 07:55:58 +00:00
versionNameSuffix = "-play"
}
}
2020-01-29 08:40:19 +00:00
compileOptions {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
// Sets Java compatibility to Java 8
2020-01-29 08:40:19 +00:00
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'org.shadowice.flocke.andotp'
lint {
abortOnError false
}
2015-11-23 21:20:14 +00:00
}
dependencies {
2021-05-04 04:39:22 +00:00
def lifecycle_version = "2.3.1"
2021-05-04 04:39:22 +00:00
implementation 'androidx.media:media:1.3.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2020-09-25 04:28:49 +00:00
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.cardview:cardview:1.0.0'
2021-05-04 04:39:22 +00:00
implementation 'androidx.recyclerview:recyclerview:1.2.0'
2021-01-29 06:10:43 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation "androidx.lifecycle:lifecycle-process:${lifecycle_version}"
implementation "androidx.lifecycle:lifecycle-common-java8:${lifecycle_version}"
implementation 'com.google.android.material:material:1.3.0'
2020-01-29 08:40:19 +00:00
//noinspection GradleDependency - because they messed up their version numbering
2020-09-25 04:28:49 +00:00
implementation "commons-codec:commons-codec:1.15"
2018-03-22 09:05:36 +00:00
implementation "com.github.aakira:expandable-layout:1.6.0"
implementation "com.heinrichreimersoftware:material-intro:2.0.0"
implementation("com.journeyapps:zxing-android-embedded:4.1.0") { transitive = false }
implementation('com.google.zxing:core:3.4.1')
2020-01-29 08:40:19 +00:00
implementation "me.zhanghai.android.materialprogressbar:library:1.6.1"
2021-05-04 04:39:22 +00:00
implementation "com.github.open-keychain.open-keychain:openpgp-api:v5.7.1"
2020-01-29 08:40:19 +00:00
implementation "com.leinardi.android:speed-dial:3.1.1"
2021-01-29 06:10:43 +00:00
implementation "com.mikepenz:aboutlibraries:6.2.3" // Supporting a newer version will need some work
2020-09-25 04:28:49 +00:00
androidTestImplementation "androidx.test.espresso:espresso-core:3.3.0"
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
2015-11-23 21:20:14 +00:00
}