ntfy-android/app/build.gradle

95 lines
2.8 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2021-10-30 14:13:58 +13:00
apply plugin: 'kotlin-kapt'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 30
defaultConfig {
2021-10-26 09:16:23 +13:00
applicationId "io.heckel.ntfy"
minSdkVersion 21
targetSdkVersion 30
2021-11-29 13:28:58 +13:00
versionCode 9
2021-11-30 08:06:08 +13:00
versionName "1.3.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
/* Required for Room schema migrations */
javaCompileOptions {
annotationProcessorOptions {
arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
}
buildTypes {
release {
2021-11-02 07:28:57 +13:00
minifyEnabled true
debuggable false
2021-11-22 02:56:24 +13:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2021-11-02 07:28:57 +13:00
}
debug {
minifyEnabled false
2021-11-02 07:28:57 +13:00
debuggable true
2021-11-22 02:56:24 +13:00
}
}
flavorDimensions "store"
productFlavors {
2021-11-25 10:12:51 +13:00
play {
buildConfigField 'boolean', 'FIREBASE_AVAILABLE', 'true'
2021-11-22 02:56:24 +13:00
}
2021-11-25 10:12:51 +13: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-26 09:16:23 +13:00
implementation 'com.google.code.gson:gson:2.8.8'
// WorkManager
implementation "androidx.work:work-runtime-ktx:2.6.0"
2021-11-02 02:57:05 +13:00
// Room (SQLite)
2021-10-30 14:13:58 +13: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-02 02:57:05 +13:00
2021-11-22 02:56:24 +13:00
// Firebase, sigh ... (only Google Play)
2021-11-25 10:12:51 +13:00
playImplementation 'com.google.firebase:firebase-messaging:22.0.0'
2021-10-30 14:13:58 +13:00
// RecyclerView
implementation "androidx.recyclerview:recyclerview:$rootProject.recyclerViewVersion"
2021-11-15 08:20:30 +13: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-28 15:25:02 +13:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
}