plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android'
}
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
//apply plugin: 'realm-android'
android {
    namespace 'com.navinfo.volvo'
    compileSdk 32

    defaultConfig {
        applicationId "com.navinfo.volvo"
        minSdk 24
        targetSdk 32
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

        // 指定room.schemaLocation生成的文件路径
        javaCompileOptions {
            annotationProcessorOptions {
                arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
            }
        }
        ndk {
            abiFilters "armeabi", "armeabi-v7a"
        }
    }

    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
        dataBinding true
    }
}

dependencies {

    implementation 'androidx.core:core-ktx:1.8.0'
    implementation 'androidx.appcompat:appcompat:1.5.1'
    implementation 'com.google.android.material:material:1.7.0'
    implementation "androidx.compose.material3:material3:1.0.0-alpha04"
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1'
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
    implementation 'androidx.navigation:navigation-fragment-ktx:2.4.1'
    implementation 'androidx.navigation:navigation-ui-ktx:2.4.1'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.4'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'


    implementation 'com.tencent.wcdb:room:1.1-19'  // 代替 room-runtime,同时也不需要再引用 wcdb-android

    api 'androidx.sqlite:sqlite:2.2.0'
    implementation 'androidx.room:room-runtime:2.4.3'
    annotationProcessor 'androidx.room:room-compiler:2.4.3'
    annotationProcessor 'android.arch.persistence.room:compiler:1.1.1'
    kapt 'android.arch.persistence.room:compiler:1.1.1'// compiler 需要用 room 的
    kapt 'androidx.room:room-compiler:2.4.3'
    androidTestImplementation "android.arch.persistence.room:testing:1.1.1"
//    implementation "android.arch.lifecycle:extensions:1.1.1"
//    annotationProcessor "android.arch.lifecycle:compiler:1.1.1"
    implementation 'com.tencent.wcdb:wcdb-android:1.1-19'
    // 文件选择器 https://github.com/rosuH/AndroidFilePicker/blob/master/README_CN.md
    implementation 'me.rosuh:AndroidFilePicker:0.8.2'
    // 时间选择器 https://github.com/Gredicer/datetimepicker
    implementation 'com.github.Gredicer:datetimepicker:V1.0.0'
    implementation 'com.google.code.gson:gson:2.10'
    implementation 'com.yanzhenjie.recyclerview:x:1.3.2'

    // 动态权限申请 https://github.com/permissions-dispatcher/PermissionsDispatcher
    implementation "com.github.permissions-dispatcher:permissionsdispatcher:4.9.2"
    annotationProcessor "com.github.permissions-dispatcher:permissionsdispatcher-processor:4.9.2"

    // 相机库 https://natario1.github.io/CameraView/about/getting-started
    implementation("com.otaliastudios:cameraview:2.7.2")
    // 图片压缩算法 https://github.com/Curzibn/Luban
    implementation 'top.zibin:Luban:1.1.8'
    // Android工具类库 https://github.com/l123456789jy/Lazy
    implementation 'com.github.lazylibrary:lazylibrary:1.0.2'
}