You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.9 KiB
Groovy
67 lines
1.9 KiB
Groovy
group 'com.famedly.fcm_shared_isolate'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.7.10'
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.1.2'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
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 {
|
|
compileSdk 33
|
|
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
namespace "com.famedly.fcm_shared_isolate"
|
|
}
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
}
|
|
dependencies {
|
|
api firebaseCoreProject
|
|
implementation platform("com.google.firebase:firebase-bom:${getRootProjectExtOrCoreProperty("FirebaseSDKVersion", firebaseCoreProject)}")
|
|
api 'com.google.firebase:firebase-messaging'
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
}
|