mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-02-13 19:38:49 -06:00
Bumps [material](https://github.com/material-components/material-components-android) from 1.6.0-beta01 to 1.7.0-alpha01. - [Release notes](https://github.com/material-components/material-components-android/releases) - [Commits](https://github.com/material-components/material-components-android/compare/1.6.0-beta01...1.7.0-alpha01) --- updated-dependencies: - dependency-name: com.google.android.material:material dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
75 lines
2.0 KiB
Groovy
75 lines
2.0 KiB
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'kotlin-android'
|
|
id 'kotlin-kapt'
|
|
id("dagger.hilt.android.plugin")
|
|
|
|
}
|
|
|
|
android {
|
|
compileSdk 31
|
|
|
|
defaultConfig {
|
|
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'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.core:core-ktx:1.7.0'
|
|
implementation 'androidx.appcompat:appcompat:1.4.1'
|
|
implementation 'com.google.android.material:material:1.7.0-alpha01'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
|
|
testImplementation 'junit:junit:4.+'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
|
|
// apache common codec
|
|
implementation "commons-codec:commons-codec:1.15"
|
|
|
|
//Androidx Security
|
|
implementation "androidx.security:security-crypto:1.1.0-alpha03"
|
|
|
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
androidTestImplementation 'androidx.test:rules:1.4.0'
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
implementation "androidx.room:room-ktx:$room_version"
|
|
|
|
|
|
// dependency injection
|
|
implementation("com.google.dagger:hilt-android:$hilt_version")
|
|
kapt("com.google.dagger:hilt-android-compiler:$hilt_version")
|
|
implementation("androidx.hilt:hilt-work:1.0.0")
|
|
// When using Kotlin.
|
|
kapt("androidx.hilt:hilt-compiler:1.0.0")
|
|
|
|
implementation "androidx.work:work-runtime-ktx:2.7.1"
|
|
|
|
|
|
implementation 'com.google.code.gson:gson:2.9.0'
|
|
|
|
implementation "androidx.datastore:datastore-preferences:1.0.0"
|
|
|
|
|
|
|
|
} |