diff --git a/core/database/.gitignore b/core/database/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/core/database/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/core/database/build.gradle.kts b/core/database/build.gradle.kts new file mode 100644 index 0000000..08ea61e --- /dev/null +++ b/core/database/build.gradle.kts @@ -0,0 +1,13 @@ +plugins { + alias(libs.plugins.sopt.android.library) + alias(libs.plugins.sopt.android.hilt) + alias(libs.plugins.sopt.plugin.room) + alias(libs.plugins.kotlin.android) +} + +android { + namespace = "org.sopt.database" +} + +dependencies { +} \ No newline at end of file diff --git a/core/database/consumer-rules.pro b/core/database/consumer-rules.pro new file mode 100644 index 0000000..e69de29 diff --git a/core/database/src/main/AndroidManifest.xml b/core/database/src/main/AndroidManifest.xml new file mode 100644 index 0000000..a5918e6 --- /dev/null +++ b/core/database/src/main/AndroidManifest.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file