ext.postBuildExtras = {

}

buildscript {
	repositories {
        mavenCentral()
        google()
        mavenLocal()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:8.7.0'
        classpath 'com.google.gms:google-services:4.3.13'
    }
}

allprojects{
  repositories {
      mavenCentral()  
  }
}

dependencies {
    implementation("androidx.cardview:cardview:1.0.0")
  implementation('com.indigitall:android:7.0.+') {
     exclude group : "com.indigitall", module:"android-hms"
 }
}

//apply plugin: 'com.google.gms.google-services'
// class must be used instead of id(string) to be able to apply plugin from non-root gradle file
apply plugin: com.google.gms.googleservices.GoogleServicesPlugin
