You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.0 KiB
64 lines
2.0 KiB
plugins {
|
|
id 'com.android.application'
|
|
id 'com.google.gms.google-services'
|
|
id 'com.google.firebase.crashlytics'
|
|
}
|
|
|
|
android {
|
|
compileSdk 32
|
|
|
|
defaultConfig {
|
|
applicationId "com.vernu.sms"
|
|
minSdk 24
|
|
targetSdk 32
|
|
versionCode 15
|
|
versionName "2.6.2"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
// javaCompileOptions {
|
|
// annotationProcessorOptions {
|
|
// arguments["room.schemaLocation"] = "$projectDir/schemas"
|
|
// }
|
|
// }
|
|
}
|
|
|
|
buildTypes {
|
|
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"
|
|
}
|
|
|