oplogy/app/build.gradle

44 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2024-05-28 05:14:36 +00:00
plugins {
id 'com.android.application'
2024-06-05 05:18:43 +00:00
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
2024-05-28 05:14:36 +00:00
}
android {
namespace 'com.example.oplogy'
2024-06-05 05:18:43 +00:00
compileSdk 34
2024-05-28 05:14:36 +00:00
defaultConfig {
applicationId "com.example.oplogy"
minSdk 26
2024-06-05 05:18:43 +00:00
targetSdk 34
2024-05-28 05:14:36 +00:00
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
}
2024-06-05 05:18:43 +00:00
buildFeatures {
viewBinding true
}
2024-05-28 05:14:36 +00:00
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2024-06-05 05:18:43 +00:00
implementation 'com.google.android.gms:play-services-maps:18.2.0'
2024-05-28 05:14:36 +00:00
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}