63 lines
1.7 KiB
Plaintext
63 lines
1.7 KiB
Plaintext
plugins {
|
|
alias(libs.plugins.android.application)
|
|
id("com.google.gms.google-services")
|
|
id("com.google.firebase.crashlytics")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.example.funnysounds"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "com.funny.sounds.hd"
|
|
minSdk = 23
|
|
targetSdk = 34
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.appcompat)
|
|
implementation(libs.material)
|
|
implementation(libs.activity)
|
|
implementation(libs.constraintlayout)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.ext.junit)
|
|
androidTestImplementation(libs.espresso.core)
|
|
implementation ("com.github.bumptech.glide:glide:4.16.0")
|
|
implementation ("com.google.code.gson:gson:2.10.1")
|
|
implementation("com.google.android.material:material:1.11.0")
|
|
|
|
|
|
implementation(platform("com.google.firebase:firebase-bom:32.3.1"))
|
|
implementation("com.google.firebase:firebase-analytics-ktx")
|
|
implementation("com.google.firebase:firebase-crashlytics-ktx")
|
|
|
|
//---------------------------------Mintegral SDK
|
|
implementation ("com.mbridge.msdk.oversea:newinterstitial:16.7.71")
|
|
implementation ("com.mbridge.msdk.oversea:mbbid:16.7.61")
|
|
|
|
|
|
|
|
} |