AndroidStudioDemo/app/build.gradle

44 lines
1.0 KiB
Groovy
Raw Permalink Normal View History

2024-07-06 09:59:02 +00:00
plugins {
alias(libs.plugins.android.application)
}
android {
namespace 'com.example.androiddemo'
compileSdk 34
defaultConfig {
applicationId "com.example.androiddemo"
minSdk 24
targetSdk 34
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_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
viewBinding true
}
2024-07-06 09:59:02 +00:00
}
dependencies {
implementation libs.appcompat
implementation libs.material
implementation libs.activity
implementation libs.constraintlayout
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
2024-07-07 08:15:22 +00:00
implementation(libs.glide)
2024-07-06 09:59:02 +00:00
}