Rev 1 | Rev 3 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
apply plugin: 'com.android.application'apply plugin: 'com.google.gms.google-services' // Google Services pluginandroid {compileSdk 33defaultConfig {applicationId "com.cesams.leaderslinked"minSdkVersion 21targetSdk 33versionCode 15versionName '1.1.11'testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"}buildTypes {release {minifyEnabled falseproguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'}}namespace 'com.cesams.leaderslinked'}dependencies {implementation fileTree(dir: 'libs', include: ['*.jar'])implementation 'androidx.appcompat:appcompat:1.6.1'implementation 'androidx.constraintlayout:constraintlayout:2.1.4'// Add the Firebase SDK for Google Analyticsimplementation 'com.google.firebase:firebase-analytics:21.3.0'// Add the SDK for Firebase Cloud Messagingimplementation 'com.google.firebase:firebase-messaging:23.2.1'implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'testImplementation 'junit:junit:4.12'androidTestImplementation 'androidx.test.ext:junit:1.1.5'androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'}