apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-kapt' apply plugin: 'com.google.gms.google-services' android { compileSdkVersion 30 defaultConfig { applicationId "io.heckel.ntfy" minSdkVersion 21 targetSdkVersion 30 versionCode 6 versionName "1.1.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" /* Required for Room schema migrations */ javaCompileOptions { annotationProcessorOptions { arguments += ["room.schemaLocation": "$projectDir/schemas".toString()] } } } buildTypes { release { minifyEnabled true debuggable false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { minifyEnabled false debuggable true applicationIdSuffix ".debug" versionNameSuffix "-debug" } } flavorDimensions "store" productFlavors { forPlay { dimension "store" buildConfigField 'String', 'STORE', '"play"' } forFDroid { dimension "store" buildConfigField 'String', 'STORE', '"fdroid"' } } 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" implementation 'com.google.code.gson:gson:2.8.8' // WorkManager implementation "androidx.work:work-runtime-ktx:2.6.0" // Room (SQLite) 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" // Firebase, sigh ... (only Google Play) forPlayImplementation 'com.google.firebase:firebase-messaging:22.0.0' // RecyclerView implementation "androidx.recyclerview:recyclerview:$rootProject.recyclerViewVersion" // 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" implementation 'androidx.legacy:legacy-support-v4:1.0.0' }