mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
Epic with sets and relations + new app flavors (stable, experimental) (#1048)
This commit is contained in:
parent
4f540aa356
commit
31d820c4dd
911 changed files with 51701 additions and 3827 deletions
|
@ -16,6 +16,35 @@ android {
|
|||
|
||||
testOptions.unitTests.includeAndroidResources = true
|
||||
|
||||
flavorDimensions 'default'
|
||||
productFlavors {
|
||||
stable {
|
||||
dimension 'default'
|
||||
}
|
||||
experimental{
|
||||
dimension 'default'
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
stable {
|
||||
java {
|
||||
srcDirs 'src/stable/java'
|
||||
}
|
||||
res {
|
||||
srcDirs 'src/stable/res'
|
||||
}
|
||||
}
|
||||
experimental {
|
||||
java {
|
||||
srcDirs 'src/experimental/java'
|
||||
}
|
||||
res {
|
||||
srcDirs 'src/experimental/res'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
androidExtensions {
|
||||
experimental = true
|
||||
}
|
||||
|
@ -27,6 +56,7 @@ dependencies {
|
|||
implementation project(':core-utils')
|
||||
implementation project(':library-emojifier')
|
||||
implementation project(':analytics')
|
||||
implementation project(':core-models')
|
||||
|
||||
def applicationDependencies = rootProject.ext.mainApplication
|
||||
def unitTestDependencies = rootProject.ext.unitTesting
|
||||
|
@ -40,6 +70,8 @@ dependencies {
|
|||
|
||||
implementation applicationDependencies.timber
|
||||
|
||||
implementation applicationDependencies.urlcleaner
|
||||
|
||||
implementation analyticsDependencies.amplitude
|
||||
|
||||
testImplementation unitTestDependencies.junit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue