Files
KeyPass/keypasscompose/build.gradle
T
Yogesh Choudhary Paliyal efaa85cb49 Improve modular (#221)
* Improving module

* refactor: modules

* refactor: modules

* bump sdk v

* minor fixes

* fix spotless
2022-09-04 21:36:19 +05:30

71 lines
1.8 KiB
Groovy

plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdk 32
defaultConfig {
applicationId "com.yogeshpaliyal.keypasscompose"
minSdk 21
targetSdk 32
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.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.1'
implementation 'androidx.activity:activity-compose:1.5.1'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.2.1"
debugImplementation "androidx.compose.ui:ui-tooling:1.1.1"
implementation 'androidx.compose.material3:material3:1.0.0-alpha12'
}