1
0
Fork 0
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:
Ubu 2019-02-24 00:51:35 +03:00
commit e410354f30
4 changed files with 20 additions and 1 deletions

1
domain/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

14
domain/build.gradle Normal file
View 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"

View file

@ -0,0 +1,4 @@
package anytype.io.mobile.model
class Block {
}

View file

@ -1 +1 @@
include ':app'
include ':app', ':domain'