VidiDin-Android/StatisticReporter/build.gradle.kts

67 lines
2.1 KiB
Plaintext
Raw Normal View History

2025-12-31 10:48:19 +00:00
plugins {
alias(libs.plugins.androidLibrary)
alias(libs.plugins.kotlinAndroid)
2026-01-04 10:18:31 +00:00
id("com.google.firebase.crashlytics")
2025-12-31 10:48:19 +00:00
}
android {
namespace = "com.gamedog.statisticreporter"
compileSdk = 36
defaultConfig {
minSdk = 24
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "11"
}
}
dependencies {
implementation(libs.androidx.core.ktx)
implementation(libs.appcompat)
implementation(libs.material)
2026-01-04 07:27:50 +00:00
implementation(project(":base"))
2025-12-31 10:48:19 +00:00
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.test.ext.junit)
androidTestImplementation(libs.espresso.core)
2026-01-04 07:27:50 +00:00
2025-12-31 10:52:29 +00:00
implementation(project(":core:architecture"))
2026-01-04 07:27:50 +00:00
implementation(project(":bill"))
2025-12-31 10:48:19 +00:00
api("com.adjust.sdk:adjust-android:5.5.0")
api("com.android.installreferrer:installreferrer:2.2")
// Add the following if you are using the Adjust SDK inside web views on your app
api("com.adjust.sdk:adjust-android-webbridge:5.5.0")
api("com.android.installreferrer:installreferrer:2.2")
api("com.adjust.sdk:adjust-android-huawei-referrer:5.0.0")
2026-01-04 06:02:41 +00:00
api("com.google.android.gms:play-services-ads-identifier:18.2.0")
2026-01-04 08:43:30 +00:00
implementation("cn.thinkingdata.android:ThinkingAnalyticsSDK:3.0.2")
2026-01-04 10:18:31 +00:00
// 导入 Firebase BoMBill of Materials统一管理版本
implementation(platform("com.google.firebase:firebase-bom:33.16.0"))
// 添加你需要的 Firebase 产品依赖(无需指定版本号)
implementation("com.google.firebase:firebase-analytics")
implementation("com.google.firebase:firebase-crashlytics")
implementation("com.google.firebase:firebase-config")
2025-12-31 10:48:19 +00:00
}