mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00

* Relations | Fix | Filter create option for tags that already exist * Tech | Fix | Change compile android tests task * Tech | Fix | add build folders ignore to global .gitignore * Tech | Fix | Extract MockDataFactory.kt from test-utils * Tech | Fix | Move return to the same line as checkNotNull * Tech | Fix | Delete unused analytics property * Relations | Fix | Add AddObjectRelationValueViewModelTest.kt test query with tags behaviour * Tech | Fix | Rename :test:utils to :test:android-utils * Tech | Enhancement | implement fake providers for AddObjectRelationViewModerl
30 lines
No EOL
717 B
Groovy
30 lines
No EOL
717 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion compile_sdk
|
|
|
|
defaultConfig {
|
|
minSdkVersion min_sdk
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation mainApplication.appcompat
|
|
implementation mainApplication.kotlin
|
|
implementation mainApplication.coroutinesAndroid
|
|
implementation mainApplication.androidxCore
|
|
implementation acceptanceTesting.espressoCore
|
|
|
|
implementation mainApplication.design
|
|
implementation mainApplication.recyclerView
|
|
} |