mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-05-03 19:29:49 -05:00
0aa5d894a6
Bumps material3 from 1.1.0-alpha02 to 1.1.0-alpha03. --- updated-dependencies: - dependency-name: androidx.compose.material3:material3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
71 lines
1.8 KiB
Groovy
71 lines
1.8 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.yogeshpaliyal.keypasscompose"
|
|
minSdk 21
|
|
targetSdk 33
|
|
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 {
|
|
api project(":common")
|
|
|
|
implementation "androidx.compose.ui:ui:1.3.2"
|
|
implementation "androidx.compose.material:material:1.3.1"
|
|
implementation "androidx.compose.ui:ui-tooling-preview:1.3.2"
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
|
|
implementation 'androidx.activity:activity-compose:1.5.1'
|
|
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.3.2"
|
|
debugImplementation "androidx.compose.ui:ui-tooling:1.3.2"
|
|
|
|
implementation 'androidx.compose.material3:material3:1.1.0-alpha03'
|
|
} |