74 lines
2.1 KiB
Groovy
74 lines
2.1 KiB
Groovy
group 'guru.core.analytics.flutter.guru_analytics_flutter'
|
|
version '2.0'
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.6.10'
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.2.1'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
def firebaseCoreProject = findProject(':firebase_core')
|
|
if (firebaseCoreProject == null) {
|
|
throw new GradleException('Could not find the firebase_core FlutterFire plugin, have you added it as a dependency in your pubspec?')
|
|
} else if (!firebaseCoreProject.properties['FirebaseSDKVersion']) {
|
|
throw new GradleException('A newer version of the firebase_core FlutterFire plugin is required, please update your firebase_core pubspec dependency.')
|
|
}
|
|
|
|
def getRootProjectExtOrCoreProperty(name, firebaseCoreProject) {
|
|
if (!rootProject.ext.has('FlutterFire')) return firebaseCoreProject.properties[name]
|
|
if (!rootProject.ext.get('FlutterFire')[name]) return firebaseCoreProject.properties[name]
|
|
return rootProject.ext.get('FlutterFire').get(name)
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
api firebaseCoreProject
|
|
implementation platform("com.google.firebase:firebase-bom:${getRootProjectExtOrCoreProperty("FirebaseSDKVersion", firebaseCoreProject)}")
|
|
implementation 'com.google.firebase:firebase-analytics'
|
|
|
|
implementation 'guru.core.analytics:guru_analytics:0.3.1'
|
|
}
|