Skip to content

Commit 1026b39

Browse files
committed
Add control
1 parent cc491f6 commit 1026b39

File tree

86 files changed

+2418
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+2418
-2
lines changed

.gitignore

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
*.aab
5+
6+
# Files for the ART/Dalvik VM
7+
*.dex
8+
9+
# Java class files
10+
*.class
11+
12+
# Generated files
13+
bin/
14+
gen/
15+
out/
16+
17+
# Gradle files
18+
.gradle/
19+
**/build
20+
21+
# Local configuration file (sdk path, etc)
22+
local.properties
23+
24+
# Proguard folder generated by Eclipse
25+
proguard/
26+
27+
# Log Files
28+
*.log
29+
30+
# Android Studio Navigation editor temp files
31+
.navigation/
32+
33+
# Android Studio captures folder
34+
captures/
35+
36+
# IntelliJ
37+
*.iml
38+
.idea/
39+
40+
# Keystore files
41+
# Uncomment the following lines if you do not want to check your keystore files in.
42+
#*.jks
43+
#*.keystore
44+
45+
# External native build folder generated in Android Studio 2.2 and later
46+
.externalNativeBuild
47+
48+
# Version control
49+
vcs.xml
50+
51+
# lint
52+
lint/intermediates/
53+
lint/generated/
54+
lint/outputs/
55+
lint/tmp/
56+
# lint/reports/
57+
58+
# macOS
59+
.DS_Store

.idea/codeStyles/Project.xml

+130
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# riffraff
2-
Kotlin Flow based Unidirectional Data Flow Architecture.
1+
# control
2+
kotlin flow based unidirectional-data-flow architecture

build.gradle

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
buildscript {
2+
ext.buildConfig = [
3+
version : "0.0.1",
4+
5+
targetSdkVersion : 29,
6+
minSdkVersion : 16,
7+
compileSdkVersion: 29
8+
]
9+
10+
repositories {
11+
google()
12+
jcenter()
13+
maven { url "https://plugins.gradle.org/m2/" }
14+
}
15+
16+
dependencies {
17+
classpath Libs.com_android_tools_build_gradle
18+
classpath Libs.kotlin_gradle_plugin
19+
classpath Libs.buildsrcversions
20+
classpath Libs.kotlin_serialization
21+
}
22+
}
23+
24+
apply plugin: "de.fayard.buildSrcVersions"
25+
26+
allprojects {
27+
apply from: rootProject.file("ktlint.gradle")
28+
29+
repositories {
30+
google()
31+
jcenter()
32+
}
33+
}
34+
35+
task clean(type: Delete) {
36+
delete rootProject.buildDir
37+
}
38+
39+
buildSrcVersions {
40+
indent = " "
41+
}

buildSrc/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
.gradle/
3+
build/

buildSrc/build.gradle.kts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import org.gradle.kotlin.dsl.`kotlin-dsl`
2+
3+
plugins {
4+
`kotlin-dsl`
5+
}
6+
7+
repositories {
8+
jcenter()
9+
}

0 commit comments

Comments
 (0)