diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml
deleted file mode 100644
index 9067f16..0000000
--- a/.github/workflows/ci-cd.yml
+++ /dev/null
@@ -1,90 +0,0 @@
-name: Android CI/CD
-
-on:
- push:
- branches: [ main, develop ]
- pull_request:
- branches: [ main, develop ]
-
-jobs:
- build-and-test:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout code
- uses: actions/checkout@v4
-
- - name: Set up JDK 17
- uses: actions/setup-java@v4
- with:
- distribution: 'temurin'
- java-version: '17'
-
- - name: Cache Gradle packages
- uses: actions/cache@v4
- with:
- path: |
- ~/.gradle/caches
- ~/.gradle/wrapper
- key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
- restore-keys: |
- ${{ runner.os }}-gradle-
-
- - name: Grant execute permission for gradlew
- run: chmod +x gradlew
-
- - name: Build with Gradle
- run: ./gradlew assembleDebug
-
- - name: Run unit tests
- run: ./gradlew test
-
- - name: Upload test reports
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: test-reports
- path: app/build/reports/tests/
-
- distribute:
- needs: build-and-test # build-and-test가 성공해야 실행
- if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop') # push to main/develop만
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout code
- uses: actions/checkout@v4
-
- - name: Set up Ruby
- uses: ruby/setup-ruby@v1
- with:
- ruby-version: '3.1'
- bundler-cache: true
-
- - name: Set up JDK 17
- uses: actions/setup-java@v4
- with:
- distribution: 'temurin'
- java-version: '17'
-
- - name: Cache Gradle packages
- uses: actions/cache@v4
- with:
- path: |
- ~/.gradle/caches
- ~/.gradle/wrapper
- key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
- restore-keys: |
- ${{ runner.os }}-gradle-
-
- - name: Decode Firebase service account
- env:
- FIREBASE_SECRET: ${{ secrets.FIREBASE_SECRET }}
- run: |
- echo $FIREBASE_SECRET | base64 --decode > firebase-service-account.json
-
- - name: Grant execute permission for gradlew
- run: chmod +x gradlew
-
- - name: Run Fastlane distribute
- run: bundle exec fastlane distribute
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index e33db2e..dfb30dc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -34,23 +34,4 @@ captures/
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
-.cxx/
-
-
-# macOS
-.DS_Store
-
-# Gradle
-.gradle/
-build/
-
-# Firebase Service Account
-firebase-service-account.json
-hsconnect-*.json
-
-
-# Fastlane
-fastlane/report.xml
-fastlane/Preview.html
-fastlane/screenshots
-fastlane/test_output
\ No newline at end of file
+.cxx/
\ No newline at end of file
diff --git a/.gradle/8.13/checksums/checksums.lock b/.gradle/8.13/checksums/checksums.lock
new file mode 100644
index 0000000..268b449
Binary files /dev/null and b/.gradle/8.13/checksums/checksums.lock differ
diff --git a/.gradle/8.13/executionHistory/executionHistory.bin b/.gradle/8.13/executionHistory/executionHistory.bin
new file mode 100644
index 0000000..646c5f3
Binary files /dev/null and b/.gradle/8.13/executionHistory/executionHistory.bin differ
diff --git a/.gradle/8.13/executionHistory/executionHistory.lock b/.gradle/8.13/executionHistory/executionHistory.lock
new file mode 100644
index 0000000..b0d6921
Binary files /dev/null and b/.gradle/8.13/executionHistory/executionHistory.lock differ
diff --git a/.gradle/8.13/fileChanges/last-build.bin b/.gradle/8.13/fileChanges/last-build.bin
new file mode 100644
index 0000000..f76dd23
Binary files /dev/null and b/.gradle/8.13/fileChanges/last-build.bin differ
diff --git a/.gradle/8.13/fileHashes/fileHashes.bin b/.gradle/8.13/fileHashes/fileHashes.bin
new file mode 100644
index 0000000..cf80b29
Binary files /dev/null and b/.gradle/8.13/fileHashes/fileHashes.bin differ
diff --git a/.gradle/8.13/fileHashes/fileHashes.lock b/.gradle/8.13/fileHashes/fileHashes.lock
new file mode 100644
index 0000000..1d2673a
Binary files /dev/null and b/.gradle/8.13/fileHashes/fileHashes.lock differ
diff --git a/.gradle/8.13/fileHashes/resourceHashesCache.bin b/.gradle/8.13/fileHashes/resourceHashesCache.bin
new file mode 100644
index 0000000..7e0d3e3
Binary files /dev/null and b/.gradle/8.13/fileHashes/resourceHashesCache.bin differ
diff --git a/.gradle/8.13/gc.properties b/.gradle/8.13/gc.properties
new file mode 100644
index 0000000..e69de29
diff --git a/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/.gradle/buildOutputCleanup/buildOutputCleanup.lock
new file mode 100644
index 0000000..81c473e
Binary files /dev/null and b/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ
diff --git a/.gradle/buildOutputCleanup/cache.properties b/.gradle/buildOutputCleanup/cache.properties
new file mode 100644
index 0000000..f011b80
--- /dev/null
+++ b/.gradle/buildOutputCleanup/cache.properties
@@ -0,0 +1,2 @@
+#Fri Oct 10 14:17:20 KST 2025
+gradle.version=8.13
diff --git a/.gradle/buildOutputCleanup/outputFiles.bin b/.gradle/buildOutputCleanup/outputFiles.bin
new file mode 100644
index 0000000..72d0d4d
Binary files /dev/null and b/.gradle/buildOutputCleanup/outputFiles.bin differ
diff --git a/.gradle/config.properties b/.gradle/config.properties
new file mode 100644
index 0000000..5452bc1
--- /dev/null
+++ b/.gradle/config.properties
@@ -0,0 +1,2 @@
+#Mon Oct 13 17:27:02 KST 2025
+java.home=C\:\\Program Files\\Android\\Android Studio\\jbr
diff --git a/.gradle/file-system.probe b/.gradle/file-system.probe
new file mode 100644
index 0000000..734e661
Binary files /dev/null and b/.gradle/file-system.probe differ
diff --git a/.gradle/vcs-1/gc.properties b/.gradle/vcs-1/gc.properties
new file mode 100644
index 0000000..e69de29
diff --git a/.idea/caches/deviceStreaming.xml b/.idea/caches/deviceStreaming.xml
index 5c90e4f..e5628ed 100644
--- a/.idea/caches/deviceStreaming.xml
+++ b/.idea/caches/deviceStreaming.xml
@@ -51,18 +51,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
@@ -705,6 +693,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -815,6 +871,146 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -903,6 +1099,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -915,6 +1145,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
new file mode 100644
index 0000000..639c779
--- /dev/null
+++ b/.idea/gradle.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
new file mode 100644
index 0000000..c58f128
--- /dev/null
+++ b/.idea/workspace.xml
@@ -0,0 +1,268 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ "lastFilter": {
+ "state": "OPEN",
+ "assignee": "dmp100"
+ }
+}
+ {
+ "selectedUrlAndAccountId": {
+ "url": "https://github.com/Hsu-Connect/Connect-Front.git",
+ "accountId": "65f24e32-ba03-4289-b714-4a6f28dfb815"
+ }
+}
+ {
+ "associatedIndex": 7
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1760073437767
+
+
+ 1760073437767
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index cdd3a6b..0000000
--- a/Gemfile
+++ /dev/null
@@ -1,6 +0,0 @@
-source "https://rubygems.org"
-
-gem "fastlane"
-
-plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
-eval_gemfile(plugins_path) if File.exist?(plugins_path)
diff --git a/Gemfile.lock b/Gemfile.lock
deleted file mode 100644
index 48313d5..0000000
--- a/Gemfile.lock
+++ /dev/null
@@ -1,237 +0,0 @@
-GEM
- remote: https://rubygems.org/
- specs:
- CFPropertyList (3.0.7)
- base64
- nkf
- rexml
- addressable (2.8.7)
- public_suffix (>= 2.0.2, < 7.0)
- artifactory (3.0.17)
- atomos (0.1.3)
- aws-eventstream (1.4.0)
- aws-partitions (1.1172.0)
- aws-sdk-core (3.233.0)
- aws-eventstream (~> 1, >= 1.3.0)
- aws-partitions (~> 1, >= 1.992.0)
- aws-sigv4 (~> 1.9)
- base64
- bigdecimal
- jmespath (~> 1, >= 1.6.1)
- logger
- aws-sdk-kms (1.113.0)
- aws-sdk-core (~> 3, >= 3.231.0)
- aws-sigv4 (~> 1.5)
- aws-sdk-s3 (1.199.1)
- aws-sdk-core (~> 3, >= 3.231.0)
- aws-sdk-kms (~> 1)
- aws-sigv4 (~> 1.5)
- aws-sigv4 (1.12.1)
- aws-eventstream (~> 1, >= 1.0.2)
- babosa (1.0.4)
- base64 (0.3.0)
- bigdecimal (3.3.1)
- claide (1.1.0)
- colored (1.2)
- colored2 (3.1.2)
- commander (4.6.0)
- highline (~> 2.0.0)
- declarative (0.0.20)
- digest-crc (0.7.0)
- rake (>= 12.0.0, < 14.0.0)
- domain_name (0.6.20240107)
- dotenv (2.8.1)
- emoji_regex (3.2.3)
- excon (0.112.0)
- faraday (1.10.4)
- faraday-em_http (~> 1.0)
- faraday-em_synchrony (~> 1.0)
- faraday-excon (~> 1.1)
- faraday-httpclient (~> 1.0)
- faraday-multipart (~> 1.0)
- faraday-net_http (~> 1.0)
- faraday-net_http_persistent (~> 1.0)
- faraday-patron (~> 1.0)
- faraday-rack (~> 1.0)
- faraday-retry (~> 1.0)
- ruby2_keywords (>= 0.0.4)
- faraday-cookie_jar (0.0.7)
- faraday (>= 0.8.0)
- http-cookie (~> 1.0.0)
- faraday-em_http (1.0.0)
- faraday-em_synchrony (1.0.1)
- faraday-excon (1.1.0)
- faraday-httpclient (1.0.1)
- faraday-multipart (1.1.1)
- multipart-post (~> 2.0)
- faraday-net_http (1.0.2)
- faraday-net_http_persistent (1.2.0)
- faraday-patron (1.0.0)
- faraday-rack (1.0.0)
- faraday-retry (1.0.3)
- faraday_middleware (1.2.1)
- faraday (~> 1.0)
- fastimage (2.4.0)
- fastlane (2.228.0)
- CFPropertyList (>= 2.3, < 4.0.0)
- addressable (>= 2.8, < 3.0.0)
- artifactory (~> 3.0)
- aws-sdk-s3 (~> 1.0)
- babosa (>= 1.0.3, < 2.0.0)
- bundler (>= 1.12.0, < 3.0.0)
- colored (~> 1.2)
- commander (~> 4.6)
- dotenv (>= 2.1.1, < 3.0.0)
- emoji_regex (>= 0.1, < 4.0)
- excon (>= 0.71.0, < 1.0.0)
- faraday (~> 1.0)
- faraday-cookie_jar (~> 0.0.6)
- faraday_middleware (~> 1.0)
- fastimage (>= 2.1.0, < 3.0.0)
- fastlane-sirp (>= 1.0.0)
- gh_inspector (>= 1.1.2, < 2.0.0)
- google-apis-androidpublisher_v3 (~> 0.3)
- google-apis-playcustomapp_v1 (~> 0.1)
- google-cloud-env (>= 1.6.0, < 2.0.0)
- google-cloud-storage (~> 1.31)
- highline (~> 2.0)
- http-cookie (~> 1.0.5)
- json (< 3.0.0)
- jwt (>= 2.1.0, < 3)
- mini_magick (>= 4.9.4, < 5.0.0)
- multipart-post (>= 2.0.0, < 3.0.0)
- naturally (~> 2.2)
- optparse (>= 0.1.1, < 1.0.0)
- plist (>= 3.1.0, < 4.0.0)
- rubyzip (>= 2.0.0, < 3.0.0)
- security (= 0.1.5)
- simctl (~> 1.6.3)
- terminal-notifier (>= 2.0.0, < 3.0.0)
- terminal-table (~> 3)
- tty-screen (>= 0.6.3, < 1.0.0)
- tty-spinner (>= 0.8.0, < 1.0.0)
- word_wrap (~> 1.0.0)
- xcodeproj (>= 1.13.0, < 2.0.0)
- xcpretty (~> 0.4.1)
- xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
- fastlane-plugin-firebase_app_distribution (0.10.1)
- google-apis-firebaseappdistribution_v1 (~> 0.3.0)
- google-apis-firebaseappdistribution_v1alpha (~> 0.2.0)
- fastlane-sirp (1.0.0)
- sysrandom (~> 1.0)
- gh_inspector (1.1.3)
- google-apis-androidpublisher_v3 (0.54.0)
- google-apis-core (>= 0.11.0, < 2.a)
- google-apis-core (0.11.3)
- addressable (~> 2.5, >= 2.5.1)
- googleauth (>= 0.16.2, < 2.a)
- httpclient (>= 2.8.1, < 3.a)
- mini_mime (~> 1.0)
- representable (~> 3.0)
- retriable (>= 2.0, < 4.a)
- rexml
- google-apis-firebaseappdistribution_v1 (0.3.0)
- google-apis-core (>= 0.11.0, < 2.a)
- google-apis-firebaseappdistribution_v1alpha (0.2.0)
- google-apis-core (>= 0.11.0, < 2.a)
- google-apis-iamcredentials_v1 (0.17.0)
- google-apis-core (>= 0.11.0, < 2.a)
- google-apis-playcustomapp_v1 (0.13.0)
- google-apis-core (>= 0.11.0, < 2.a)
- google-apis-storage_v1 (0.31.0)
- google-apis-core (>= 0.11.0, < 2.a)
- google-cloud-core (1.8.0)
- google-cloud-env (>= 1.0, < 3.a)
- google-cloud-errors (~> 1.0)
- google-cloud-env (1.6.0)
- faraday (>= 0.17.3, < 3.0)
- google-cloud-errors (1.5.0)
- google-cloud-storage (1.47.0)
- addressable (~> 2.8)
- digest-crc (~> 0.4)
- google-apis-iamcredentials_v1 (~> 0.1)
- google-apis-storage_v1 (~> 0.31.0)
- google-cloud-core (~> 1.6)
- googleauth (>= 0.16.2, < 2.a)
- mini_mime (~> 1.0)
- googleauth (1.8.1)
- faraday (>= 0.17.3, < 3.a)
- jwt (>= 1.4, < 3.0)
- multi_json (~> 1.11)
- os (>= 0.9, < 2.0)
- signet (>= 0.16, < 2.a)
- highline (2.0.3)
- http-cookie (1.0.8)
- domain_name (~> 0.5)
- httpclient (2.9.0)
- mutex_m
- jmespath (1.6.2)
- json (2.15.1)
- jwt (2.10.2)
- base64
- logger (1.7.0)
- mini_magick (4.13.2)
- mini_mime (1.1.5)
- multi_json (1.17.0)
- multipart-post (2.4.1)
- mutex_m (0.3.0)
- nanaimo (0.4.0)
- naturally (2.3.0)
- nkf (0.2.0)
- optparse (0.6.0)
- os (1.1.4)
- plist (3.7.2)
- public_suffix (6.0.2)
- rake (13.3.0)
- representable (3.2.0)
- declarative (< 0.1.0)
- trailblazer-option (>= 0.1.1, < 0.2.0)
- uber (< 0.2.0)
- retriable (3.1.2)
- rexml (3.4.4)
- rouge (3.28.0)
- ruby2_keywords (0.0.5)
- rubyzip (2.4.1)
- security (0.1.5)
- signet (0.21.0)
- addressable (~> 2.8)
- faraday (>= 0.17.5, < 3.a)
- jwt (>= 1.5, < 4.0)
- multi_json (~> 1.10)
- simctl (1.6.10)
- CFPropertyList
- naturally
- sysrandom (1.0.5)
- terminal-notifier (2.0.0)
- terminal-table (3.0.2)
- unicode-display_width (>= 1.1.1, < 3)
- trailblazer-option (0.1.2)
- tty-cursor (0.7.1)
- tty-screen (0.8.2)
- tty-spinner (0.9.3)
- tty-cursor (~> 0.7)
- uber (0.1.0)
- unicode-display_width (2.6.0)
- word_wrap (1.0.0)
- xcodeproj (1.27.0)
- CFPropertyList (>= 2.3.3, < 4.0)
- atomos (~> 0.1.3)
- claide (>= 1.0.2, < 2.0)
- colored2 (~> 3.1)
- nanaimo (~> 0.4.0)
- rexml (>= 3.3.6, < 4.0)
- xcpretty (0.4.1)
- rouge (~> 3.28.0)
- xcpretty-travis-formatter (1.0.1)
- xcpretty (~> 0.2, >= 0.0.7)
-
-PLATFORMS
- arm64-darwin-24
- ruby
-
-DEPENDENCIES
- fastlane
- fastlane-plugin-firebase_app_distribution
-
-BUNDLED WITH
- 2.6.9
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index ab41458..f22c402 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -7,22 +7,13 @@ plugins {
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.devtools.ksp)
alias(libs.plugins.dagger.hilt)
- alias(libs.plugins.google.services)
-}
-
-//val properties = Properties().apply {
-// load(project.rootProject.file("local.properties").inputStream())
-//}
+}
val properties = Properties().apply {
- val localPropertiesFile = project.rootProject.file("local.properties")
- if (localPropertiesFile.exists()) {
- load(localPropertiesFile.inputStream())
- }
+ load(project.rootProject.file("local.properties").inputStream())
}
-
android {
namespace = "com.hsLink.hslink"
compileSdk = libs.versions.compileSdk.get().toInt()
@@ -35,12 +26,7 @@ android {
versionName = libs.versions.versionName.get()
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
- buildConfigField(
- "String",
- "BASE_URL",
- "\"${properties.getProperty("base.url", "https://default-url.com")}\""
- )
- //buildConfigField("String", "BASE_URL", properties["base.url"].toString())
+ buildConfigField("String", "BASE_URL", properties["base.url"].toString())
}
buildTypes {
@@ -93,7 +79,4 @@ dependencies {
implementation(libs.accompanist.systemuicontroller)
- implementation(platform(libs.firebase.bom))
- implementation(libs.firebase.analytics)
-
}
\ No newline at end of file
diff --git a/app/google-services.json b/app/google-services.json
deleted file mode 100644
index 5b8142a..0000000
--- a/app/google-services.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "project_info": {
- "project_number": "71578488789",
- "project_id": "hsconnect-6077d",
- "storage_bucket": "hsconnect-6077d.firebasestorage.app"
- },
- "client": [
- {
- "client_info": {
- "mobilesdk_app_id": "1:71578488789:android:603f0a4786a2a08e97f75c",
- "android_client_info": {
- "package_name": "com.hsLink.hslink"
- }
- },
- "oauth_client": [],
- "api_key": [
- {
- "current_key": "AIzaSyCf-dxKN7O1Tx3gi_YfZNLGg7IBdCs3Io8"
- }
- ],
- "services": {
- "appinvite_service": {
- "other_platform_oauth_client": []
- }
- }
- }
- ],
- "configuration_version": "1"
-}
\ No newline at end of file
diff --git a/build.gradle.kts b/build.gradle.kts
index 6c893c2..233ee3e 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,5 +8,4 @@ plugins {
alias(libs.plugins.devtools.ksp) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.jetbrains.kotlin.jvm) apply false
- alias(libs.plugins.google.services) apply false
}
\ No newline at end of file
diff --git a/fastlane/Appfile b/fastlane/Appfile
deleted file mode 100644
index 14ae1e1..0000000
--- a/fastlane/Appfile
+++ /dev/null
@@ -1,2 +0,0 @@
-json_key_file("") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
-package_name("com.hsLink.hslink") # e.g. com.krausefx.app
diff --git a/fastlane/Fastfile b/fastlane/Fastfile
deleted file mode 100644
index a84da6e..0000000
--- a/fastlane/Fastfile
+++ /dev/null
@@ -1,51 +0,0 @@
-# This file contains the fastlane.tools configuration
-# You can find the documentation at https://docs.fastlane.tools
-#
-# For a list of all available actions, check out
-#
-# https://docs.fastlane.tools/actions
-#
-# For a list of all available plugins, check out
-#
-# https://docs.fastlane.tools/plugins/available-plugins
-#
-
-# Uncomment the line if you want fastlane to automatically update itself
-# update_fastlane
-
-default_platform(:android)
-
-platform :android do
- desc "Runs all the tests"
- lane :test do
- gradle(task: "test")
- end
-
- desc "Submit a new Beta Build to Crashlytics Beta"
- lane :beta do
- gradle(task: "clean assembleRelease")
- crashlytics
-
- # sh "your_script.sh"
- # You can also use other beta testing services here
- end
-
- desc "Deploy a new version to the Google Play"
- lane :deploy do
- gradle(task: "clean assembleRelease")
- upload_to_play_store
- end
-
- desc "Build and distribute to Firebase App Distribution"
- lane :distribute do
- gradle(task: "clean assembleRelease")
-
- firebase_app_distribution(
- app: "1:71578488789:android:603f0a4786a2a08e97f75c",
- service_credentials_file: File.expand_path("../hsconnect-6077d-4a0fd86a106f.json", __dir__),
- testers: "dmp100@naver.com",
- release_notes: "New test build from Fastlane",
- android_artifact_type: "APK"
- )
- end
-end
\ No newline at end of file
diff --git a/fastlane/Pluginfile b/fastlane/Pluginfile
deleted file mode 100644
index b18539b..0000000
--- a/fastlane/Pluginfile
+++ /dev/null
@@ -1,5 +0,0 @@
-# Autogenerated by fastlane
-#
-# Ensure this file is checked in to source control!
-
-gem 'fastlane-plugin-firebase_app_distribution'
diff --git a/fastlane/README.md b/fastlane/README.md
deleted file mode 100644
index 97f3329..0000000
--- a/fastlane/README.md
+++ /dev/null
@@ -1,56 +0,0 @@
-fastlane documentation
-----
-
-# Installation
-
-Make sure you have the latest version of the Xcode command line tools installed:
-
-```sh
-xcode-select --install
-```
-
-For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
-
-# Available Actions
-
-## Android
-
-### android test
-
-```sh
-[bundle exec] fastlane android test
-```
-
-Runs all the tests
-
-### android beta
-
-```sh
-[bundle exec] fastlane android beta
-```
-
-Submit a new Beta Build to Crashlytics Beta
-
-### android deploy
-
-```sh
-[bundle exec] fastlane android deploy
-```
-
-Deploy a new version to the Google Play
-
-### android distribute
-
-```sh
-[bundle exec] fastlane android distribute
-```
-
-Build and distribute to Firebase App Distribution
-
-----
-
-This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
-
-More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
-
-The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 4fe4224..f70af7a 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -49,10 +49,6 @@ coil = "2.6.0"
# Timber
timber = "5.0.1"
-# Google Services
-googleServices = "4.4.3"
-firebaseBom = "34.3.0"
-
[libraries]
# Test
accompanist-systemuicontroller = { module = "com.google.accompanist:accompanist-systemuicontroller", version.ref = "accompanistSystemuicontroller" }
@@ -104,10 +100,6 @@ material = { group = "com.google.android.material", name = "material", version.r
# Timber
timber = { group = "com.jakewharton.timber", name = "timber", version.ref = "timber" }
-# Firebase
-firebase-bom = { group = "com.google.firebase", name = "firebase-bom", version.ref = "firebaseBom" }
-firebase-analytics = { group = "com.google.firebase", name = "firebase-analytics" }
-
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
@@ -118,7 +110,6 @@ devtools-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
dagger-hilt = { id = "com.google.dagger.hilt.android", version.ref = "daggerHilt" }
android-library = { id = "com.android.library", version.ref = "agp" }
jetbrains-kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "jetbrainsKotlinJvm" }
-google-services = { id = "com.google.gms.google-services", version.ref = "googleServices" }
[bundles]
@@ -162,4 +153,4 @@ retrofit = [
hilt = [
"hilt",
"hilt-navigation-compose"
-]
\ No newline at end of file
+]
diff --git a/local.properties b/local.properties
new file mode 100644
index 0000000..58ba59e
--- /dev/null
+++ b/local.properties
@@ -0,0 +1,8 @@
+dho## This file must *NOT* be checked into Version Control Systems,
+# as it contains information specific to your local configuration.
+#
+# Location of the SDK. This is only used by Gradle.
+# For customization when using a Version Control System, please read the
+# header note.
+#Mon Oct 13 17:27:16 KST 2025
+sdk.dir=C\:\\Users\\wndhk\\AppData\\Local\\Android\\Sdk