refs #6411
This commit is contained in:
parent
e0b1d73f3f
commit
c5eb824d2f
|
@ -8,7 +8,7 @@ apply plugin: 'com.google.devtools.ksp'
|
||||||
|
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdk 33 //si 34 problemas con AAPT2
|
compileSdk 34 //si 34 problemas con AAPT2
|
||||||
// buildToolsVersion "29.0.3"
|
// buildToolsVersion "29.0.3"
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
|
@ -31,7 +31,7 @@ android {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
flavorDimensions( "version")
|
flavorDimensions += "version"
|
||||||
productFlavors {
|
productFlavors {
|
||||||
create("beta") {
|
create("beta") {
|
||||||
applicationIdSuffix = ".sfusion"
|
applicationIdSuffix = ".sfusion"
|
||||||
|
|
|
@ -19,17 +19,17 @@ buildscript {
|
||||||
|
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:7.0.4'
|
classpath 'com.android.tools.build:gradle:7.4.2'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
classpath 'com.google.gms:google-services:4.3.10'
|
classpath 'com.google.gms:google-services:4.4.0'
|
||||||
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
plugins {
|
plugins {
|
||||||
id 'com.google.devtools.ksp' version '1.8.21-1.0.11' apply false
|
id 'com.google.devtools.ksp' version '1.8.22-1.0.11' apply false
|
||||||
}
|
}
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
|
|
Loading…
Reference in New Issue