plugins { id 'com.android.application' id 'kotlin-android' id 'com.google.firebase.crashlytics' id 'com.google.gms.google-services' id 'androidx.navigation.safeargs.kotlin' } android { signingConfigs { signingconf { Properties properties = new Properties() properties.load(project.rootProject.file('local.properties').newDataInputStream()) storeFile file(properties.getProperty("signing.file")) storePassword properties.getProperty("signing.password") keyAlias properties.getProperty("signing.key.alias") keyPassword properties.getProperty("signing.key.password") } } compileSdk 33 defaultConfig { applicationId "com.cyb3rko.techniklogger" minSdk 19 targetSdk 33 versionCode 17 versionName "2.2.3" } buildTypes { debug { manifestPlaceholders = [firebaseCollectionEnabled:"false"] proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' minifyEnabled true } release { signingConfig signingConfigs.signingconf minifyEnabled true shrinkResources true manifestPlaceholders = [firebaseCollectionEnabled:"true"] proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } kotlinOptions { jvmTarget = '11' } buildFeatures { viewBinding true } } dependencies { implementation platform('com.google.firebase:firebase-bom:31.4.0') implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3' implementation 'androidx.navigation:navigation-ui-ktx:2.5.3' implementation 'androidx.recyclerview:recyclerview:1.3.0' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'com.afollestad.material-dialogs:bottomsheets:3.3.0' implementation 'com.airbnb.android:lottie:5.2.0' implementation 'com.amitshekhar.android:android-networking:1.0.2' implementation 'com.github.GrenderG:Toasty:1.5.2' implementation 'com.github.parse-community.Parse-SDK-Android:parse:1.26.0' implementation 'com.google.android.material:material:1.8.0' implementation 'com.google.firebase:firebase-analytics-ktx' // BOM versioning implementation 'com.google.firebase:firebase-crashlytics-ktx' // BOM versioning implementation 'com.itextpdf:itextpdf:5.5.13.3' }