Skip to content

Commit

Permalink
chore: domain auth 모듈 추가 #52
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhz committed Aug 10, 2024
1 parent 5bafd10 commit ec44387
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions domain/sign/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
17 changes: 17 additions & 0 deletions domain/sign/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
plugins {
alias(libs.plugins.noffice.android.library)
alias(libs.plugins.noffice.android.hilt)
alias(libs.plugins.noffice.android.application.test)
}

android {
namespace = "com.easyhz.noffice.domain.sign"
}

dependencies {
api(projects.core.model)
implementation(projects.core.common)
implementation(projects.data.auth)
implementation(libs.googleid)
implementation(libs.gms.play.services.auth)
}
21 changes: 21 additions & 0 deletions domain/sign/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
2 changes: 2 additions & 0 deletions domain/sign/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest />
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ include(":domain:my-page")
include(":domain:notification")
include(":core:model")
include(":feature:sign")
include(":domain:sign")

0 comments on commit ec44387

Please sign in to comment.