Skip to content

Commit 5614308

Browse files
committed
Init: core:security 모듈 생성
1 parent 08fc652 commit 5614308

7 files changed

Lines changed: 39 additions & 0 deletions

File tree

app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies {
1616
implementation(projects.core.datastore)
1717
implementation(projects.core.designsystem)
1818
implementation(projects.core.network)
19+
implementation(projects.core.security)
1920
implementation(projects.data)
2021
implementation(projects.domain)
2122
implementation(projects.presentation)

core/security/.gitignore

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

core/security/build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
plugins {
2+
alias(libs.plugins.bitnagil.android.library)
3+
}
4+
5+
android {
6+
namespace = "com.threegap.bitnagil.security"
7+
}
8+
9+
dependencies {
10+
testImplementation(libs.androidx.junit)
11+
}

core/security/consumer-rules.pro

Whitespace-only changes.

core/security/proguard-rules.pro

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3+
4+
</manifest>

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ include(":app")
2828
include(":core:datastore")
2929
include(":core:designsystem")
3030
include(":core:network")
31+
include(":core:security")
3132
include(":data")
3233
include(":domain")
3334
include(":presentation")

0 commit comments

Comments
 (0)