Rev 1 | 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 plugin
android {
compileSdk 33
defaultConfig {
applicationId "com.cesams.leaderslinked"
minSdkVersion 21
targetSdk 33
versionCode 15
versionName '1.1.11'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles 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 Analytics
implementation 'com.google.firebase:firebase-analytics:21.3.0'
// Add the SDK for Firebase Cloud Messaging
implementation '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'
}