mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-01-30 11:11:05 -06:00
Bumps activity-compose from 1.4.0 to 1.5.0. --- updated-dependencies: - dependency-name: androidx.activity:activity-compose dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
77 lines
2.2 KiB
Groovy
77 lines
2.2 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
}
|
|
|
|
android {
|
|
compileSdk 31
|
|
|
|
defaultConfig {
|
|
applicationId "com.yogeshpaliyal.keypasscompose"
|
|
minSdk 21
|
|
targetSdk 31
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary true
|
|
}
|
|
}
|
|
|
|
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'
|
|
useIR = true
|
|
}
|
|
buildFeatures {
|
|
compose true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.2.0-beta01"
|
|
}
|
|
packagingOptions {
|
|
resources {
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
}
|
|
}
|
|
|
|
/*sourceSets {
|
|
main {
|
|
res {
|
|
srcDirs 'src\\main\\res', 'src\\staging\\res', '..\\common\\src\\staging\\res'
|
|
}
|
|
}
|
|
}*/
|
|
|
|
// namespace 'com.yogeshpaliyal.keypasscompose'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":common")
|
|
|
|
implementation 'androidx.core:core-ktx:1.8.0'
|
|
implementation 'androidx.appcompat:appcompat:1.4.2'
|
|
implementation 'com.google.android.material:material:1.7.0-alpha02'
|
|
implementation "androidx.compose.ui:ui:1.1.1"
|
|
implementation "androidx.compose.material:material:1.1.1"
|
|
implementation "androidx.compose.ui:ui-tooling-preview:1.1.1"
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.0'
|
|
implementation 'androidx.activity:activity-compose:1.5.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.1.1"
|
|
debugImplementation "androidx.compose.ui:ui-tooling:1.1.1"
|
|
|
|
implementation 'androidx.compose.material3:material3:1.0.0-alpha12'
|
|
} |