Initial implementation

This commit is contained in:
Gergely Hegedus 2022-06-14 10:24:02 +03:00
parent 256c243ce0
commit 0b4fa9ece7
69 changed files with 2561 additions and 0 deletions

51
picker/build.gradle Normal file
View file

@ -0,0 +1,51 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'kotlin-kapt'
}
android {
namespace 'org.fknives.android.compose.picker'
compileSdk defaultCompileSdkVersion
defaultConfig {
minSdk defaultMinSdkVersion
targetSdk defaultTargetSdkVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion composeKotlinCompilerExtensionVersion
}
compileOptions {
sourceCompatibility compileCompatibility
targetCompatibility compileCompatibility
}
kotlinOptions {
jvmTarget = kotlinJvmTarget
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutine_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_coroutine_version"
api "androidx.compose.material:material:$compose_version"
api "androidx.compose.animation:animation:$compose_version"
implementation "androidx.compose.ui:ui-tooling:$compose_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
}