Skip to content

Commit f178fc8

Browse files
committed
Add post module
1 parent 97105ad commit f178fc8

File tree

5 files changed

+16
-1
lines changed

5 files changed

+16
-1
lines changed

feature/post/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

feature/post/build.gradle.kts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
2+
plugins {
3+
id("conf.mad.convention.android.feature")
4+
}
5+
6+
android {
7+
namespace = "com.conf.mad.todo.post"
8+
9+
defaultConfig {
10+
consumerProguardFiles("consumer-rules.pro")
11+
}
12+
}

feature/post/consumer-rules.pro

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ dependencyResolutionManagement {
1616
}
1717

1818
rootProject.name = "TodoMad"
19-
include(":app", ":core:designsystem")
19+
include(":app", ":core:designsystem", ":feature:post")

0 commit comments

Comments
 (0)