e-ntfy-android/app/build.gradle

95 lines
2.8 KiB
Groovy
Raw Permalink Normal View History

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2021-10-29 21:13:58 -04:00
apply plugin: 'kotlin-kapt'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 30
defaultConfig {
2021-10-25 16:16:23 -04:00
applicationId "io.heckel.ntfy"
minSdkVersion 21
targetSdkVersion 30
2021-12-12 20:37:17 -05:00
versionCode 10
versionName "1.4.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
/* Required for Room schema migrations */
javaCompileOptions {
annotationProcessorOptions {
arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
}
buildTypes {
release {
2021-11-01 14:28:57 -04:00
minifyEnabled true
debuggable false
2021-11-21 08:56:24 -05:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2021-11-01 14:28:57 -04:00
}
debug {
minifyEnabled false
2021-11-01 14:28:57 -04:00
debuggable true
2021-11-21 08:56:24 -05:00
}
}
flavorDimensions "store"
productFlavors {
2021-11-24 16:12:51 -05:00
play {
buildConfigField 'boolean', 'FIREBASE_AVAILABLE', 'true'
2021-11-21 08:56:24 -05:00
}
2021-11-24 16:12:51 -05:00
fdroid {
buildConfigField 'boolean', 'FIREBASE_AVAILABLE', 'false'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "androidx.appcompat:appcompat:$rootProject.appCompatVersion"
implementation "androidx.core:core-ktx:$rootProject.coreKtxVersion"
implementation "androidx.constraintlayout:constraintlayout:$rootProject.constraintLayoutVersion"
implementation "androidx.activity:activity-ktx:$rootProject.activityVersion"
2021-10-25 16:16:23 -04:00
implementation 'com.google.code.gson:gson:2.8.8'
// WorkManager
implementation "androidx.work:work-runtime-ktx:2.6.0"
2021-11-01 09:57:05 -04:00
// Room (SQLite)
2021-10-29 21:13:58 -04:00
def roomVersion = "2.3.0"
implementation "androidx.room:room-ktx:$roomVersion"
kapt "androidx.room:room-compiler:$roomVersion"
// OkHttp (HTTP library)
implementation "com.squareup.okhttp3:okhttp:4.9.2"
2021-11-01 09:57:05 -04:00
2021-11-21 08:56:24 -05:00
// Firebase, sigh ... (only Google Play)
2021-11-24 16:12:51 -05:00
playImplementation 'com.google.firebase:firebase-messaging:22.0.0'
2021-10-29 21:13:58 -04:00
// RecyclerView
implementation "androidx.recyclerview:recyclerview:$rootProject.recyclerViewVersion"
2021-11-14 14:20:30 -05:00
// Swipe down to refresh
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
// Material design
implementation "com.google.android.material:material:$rootProject.materialVersion"
// LiveData
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$rootProject.liveDataVersion"
2021-10-27 22:25:02 -04:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
}