agent-bigo/app/build.gradle

40 lines
964 B
Groovy
Raw Normal View History

2025-05-20 16:39:05 +08:00
plugins {
alias(libs.plugins.android.application)
}
android {
namespace 'com.example.studyapp'
compileSdk 35
defaultConfig {
applicationId "com.example.studyapp"
minSdk 24
targetSdk 35
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}
dependencies {
implementation libs.appcompat
implementation libs.material
implementation libs.activity
implementation libs.constraintlayout
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
}