plugins { id 'com.android.application' id 'kotlin-android' } android { compileSdkVersion 33 buildToolsVersion "33.0.0" defaultConfig { applicationId "org.unifiedpush.distributor.nextpush" minSdkVersion 24 targetSdkVersion 33 versionCode 16 versionName "1.4.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { resValue "string", "app_name", "NextPush" minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } debug { resValue "string", "app_name", "NextPush-dbg" applicationIdSuffix ".debug" debuggable true } } namespace 'org.unifiedpush.distributor.nextpush' } if (project.hasProperty('sign')) { android { signingConfigs { release { storeFile file(System.getenv("RELEASE_STORE_FILE")) storePassword System.getenv("RELEASE_STORE_PASSWORD") keyAlias System.getenv("RELEASE_KEY_ALIAS") keyPassword System.getenv("RELEASE_KEY_PASSWORD") } } } android.buildTypes.release.signingConfig android.signingConfigs.release } dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version") implementation("androidx.appcompat:appcompat:1.5.1") implementation("com.google.android.material:material:1.6.1") implementation("androidx.constraintlayout:constraintlayout:2.1.4") implementation("androidx.coordinatorlayout:coordinatorlayout:1.2.0") implementation("com.squareup.okhttp3:okhttp-sse:4.10.0") implementation("com.github.nextcloud:Android-SingleSignOn:0.6.1") implementation("com.squareup.retrofit2:retrofit:2.9.0") implementation("io.reactivex.rxjava2:rxjava:2.2.21") implementation("androidx.work:work-runtime-ktx:2.7.1") }