plugins { id 'com.android.application' id 'com.google.gms.google-services' id 'com.google.firebase.crashlytics' } def keyPropertiesFile = rootProject.file("key.properties") def keyProperties = new Properties() if (keyPropertiesFile.exists()) { keyProperties.load(new FileInputStream(keyPropertiesFile)) } android { compileSdk 32 signingConfigs { release { storeFile keyProperties.containsKey('storeFile') ? file(keyProperties['storeFile']) : null storePassword keyProperties['storePassword'] keyAlias keyProperties['keyAlias'] keyPassword keyProperties['keyPassword'] } } defaultConfig { applicationId "com.vernu.textbee" minSdk 24 targetSdk 32 versionCode 15 versionName "2.6.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" // javaCompileOptions { // annotationProcessorOptions { // arguments["room.schemaLocation"] = "$projectDir/schemas" // } // } } buildTypes { release { signingConfig signingConfigs.release minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation 'androidx.appcompat:appcompat:1.3.0' implementation 'com.google.android.material:material:1.8.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' implementation platform('com.google.firebase:firebase-bom:29.2.1') implementation 'com.google.firebase:firebase-analytics' implementation 'com.google.firebase:firebase-messaging' implementation 'com.google.firebase:firebase-messaging-directboot' implementation 'com.google.firebase:firebase-crashlytics' implementation 'com.google.code.gson:gson:2.9.0' implementation 'com.squareup.retrofit2:retrofit:2.9.0' implementation 'com.squareup.retrofit2:converter-gson:2.9.0' implementation 'com.journeyapps:zxing-android-embedded:4.1.0' implementation 'androidx.work:work-runtime:2.7.1' // def room_version = "2.4.2" // implementation "androidx.room:room-runtime:$room_version" // annotationProcessor "androidx.room:room-compiler:$room_version" }