MeteoriteDB

Log | Files | Refs | README

build.gradle (1274B)


      1 plugins {
      2     id 'com.android.application'
      3     id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
      4 }
      5 
      6 android {
      7     namespace 'com.example.project_assignment'
      8     compileSdk 33
      9 
     10     defaultConfig {
     11         applicationId "com.example.project_assignment"
     12         minSdk 29
     13         targetSdk 33
     14         versionCode 1
     15         versionName "1.0"
     16 
     17         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
     18     }
     19 
     20     buildTypes {
     21         release {
     22             minifyEnabled false
     23             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
     24         }
     25     }
     26     compileOptions {
     27         sourceCompatibility JavaVersion.VERSION_1_8
     28         targetCompatibility JavaVersion.VERSION_1_8
     29     }
     30 }
     31 
     32 dependencies {
     33 
     34     implementation 'androidx.appcompat:appcompat:1.6.1'
     35     implementation 'com.google.android.material:material:1.8.0'
     36     implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
     37     implementation 'com.google.code.gson:gson:2.10.1'
     38     implementation 'com.google.android.gms:play-services-maps:18.1.0'
     39     testImplementation 'junit:junit:4.13.2'
     40     androidTestImplementation 'androidx.test.ext:junit:1.1.5'
     41     androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
     42 }