Skip to content

Commit 37ef449

Browse files
committed
[CHORE] : Analytics 모듈 생성
1 parent d9af2a9 commit 37ef449

File tree

6 files changed

+56
-2
lines changed

6 files changed

+56
-2
lines changed

.idea/gradle.xml

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/analytics/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

core/analytics/build.gradle.kts

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
plugins {
2+
id("com.wap.wapp.library")
3+
id("com.wap.wapp.hilt")
4+
id("com.wap.wapp.compose")
5+
}
6+
7+
android {
8+
namespace = "com.wap.wapp.core.analytics"
9+
10+
defaultConfig {
11+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
12+
consumerProguardFiles("consumer-rules.pro")
13+
}
14+
15+
buildTypes {
16+
release {
17+
isMinifyEnabled = false
18+
proguardFiles(
19+
getDefaultProguardFile("proguard-android-optimize.txt"),
20+
"proguard-rules.pro",
21+
)
22+
}
23+
}
24+
}
25+
26+
dependencies {
27+
implementation(platform(libs.firebase.bom))
28+
implementation(libs.firebase.analytics)
29+
}

core/analytics/consumer-rules.pro

Whitespace-only changes.

core/analytics/proguard-rules.pro

+21
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

settings.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ include(":core:domain")
2121
include(":core:network")
2222
include(":core:designsystem")
2323
include(":core:designresource")
24-
include(":core:common")
2524
include(":core:model")
25+
include(":core:common")
26+
include(":core:analytics")
2627
include(":feature")
2728
include(":feature:auth")
2829
include(":feature:notice")

0 commit comments

Comments
 (0)