Skip to content

Commit

Permalink
[feat] #1 feature module
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed Apr 3, 2024
1 parent 336ac93 commit 5593590
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions feature/main/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
9 changes: 9 additions & 0 deletions feature/main/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.sopt.plugin.feature)
alias(libs.plugins.kotlin.android)
}

android {
namespace = "org.sopt.main"
}
Empty file added feature/main/consumer-rules.pro
Empty file.
4 changes: 4 additions & 0 deletions feature/main/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
3 changes: 3 additions & 0 deletions feature/main/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<resources>
<string name="title_activity_main">MainActivity</string>
</resources>
5 changes: 5 additions & 0 deletions feature/main/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="Theme.NOWSOPTAndroid" parent="android:Theme.Material.Light.NoActionBar" />
</resources>

0 comments on commit 5593590

Please sign in to comment.