mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
Merge branch 'feature_domain_module' into feature_drag_and_drop_list
This commit is contained in:
commit
e410354f30
4 changed files with 20 additions and 1 deletions
1
domain/.gitignore
vendored
Normal file
1
domain/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/build
|
14
domain/build.gradle
Normal file
14
domain/build.gradle
Normal file
|
@ -0,0 +1,14 @@
|
|||
apply plugin: 'kotlin'
|
||||
|
||||
dependencies {
|
||||
|
||||
def domainTestDependencies = rootProject.ext.unitTesting
|
||||
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib:${rootProject.ext.kotlin_version}"
|
||||
|
||||
testImplementation domainTestDependencies.junit
|
||||
testImplementation domainTestDependencies.mockito
|
||||
}
|
||||
|
||||
sourceCompatibility = "7"
|
||||
targetCompatibility = "7"
|
4
domain/src/main/java/anytype/io/mobile/model/Block.kt
Normal file
4
domain/src/main/java/anytype/io/mobile/model/Block.kt
Normal file
|
@ -0,0 +1,4 @@
|
|||
package anytype.io.mobile.model
|
||||
|
||||
class Block {
|
||||
}
|
|
@ -1 +1 @@
|
|||
include ':app'
|
||||
include ':app', ':domain'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue