Skip to content
Snippets Groups Projects
Select Git revision
  • c1e9cd334ac5c548b3de4fa993aadc17f718be00
  • main default protected
2 results

build.gradle

Blame
  • build.gradle 2.81 KiB
    plugins {
        id 'com.android.application'
        id 'kotlin-android'
        id 'kotlin-kapt'
    }
    apply plugin: 'kotlin-kapt'
    apply plugin: 'com.android.application'
    apply plugin: 'dagger.hilt.android.plugin'
    
    android {
        compileSdk 31
    
        defaultConfig {
            applicationId "com.example.randotracker"
            minSdk 21
            targetSdk 31
            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
        }
        kotlinOptions {
            jvmTarget = '1.8'
        }
        buildFeatures {
            viewBinding true
        }
    }
    
    dependencies {
    
    
        // Activity KTX for viewModels()
        implementation "androidx.activity:activity-ktx:1.4.0"
    
        // Dagger - Hilt
        implementation 'com.google.dagger:hilt-android:2.39.1'
        kapt 'com.google.dagger:hilt-compiler:2.39.1'
    
        kapt "androidx.room:room-compiler:2.4.1"
        implementation 'androidx.room:room-common:2.4.1'
        implementation 'androidx.room:room-ktx:2.4.1'
    
        implementation 'androidx.fragment:fragment-ktx:1.4.1'
        implementation 'androidx.core:core-ktx:1.7.0'
        implementation 'androidx.appcompat:appcompat:1.4.1'
        implementation 'com.google.android.material:material:1.5.0'
        implementation 'com.google.android.gms:play-services-maps:18.0.2'
        implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
        implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.0'
        implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0'
        implementation 'androidx.navigation:navigation-runtime-ktx:2.4.0'
        implementation 'androidx.legacy:legacy-support-v4:1.0.0'
        implementation 'com.google.android.gms:play-services-location:19.0.1'
        implementation 'androidx.lifecycle:lifecycle-service:2.4.0'
    
        implementation 'javax.inject:javax.inject:1'
        implementation 'junit:junit:4.13.2'
        implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0"
        testImplementation 'junit:junit:'
        androidTestImplementation 'androidx.test.ext:junit:1.1.3'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
    
        implementation 'com.google.dagger:hilt-android:2.40.5'
        kapt 'com.google.dagger:hilt-compiler:2.40.5'
    
        // For instrumentation tests
        androidTestImplementation  'com.google.dagger:hilt-android-testing:2.40.5'
        kaptAndroidTest 'com.google.dagger:hilt-compiler:2.40.5'
    
        // For local unit tests
        testImplementation 'com.google.dagger:hilt-android-testing:2.40.5'
        kaptTest 'com.google.dagger:hilt-compiler:2.40.5'
    }
    
    kapt {
        correctErrorTypes true
    }