Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into feature/#23-ui-signup-layout
  • Loading branch information
etama123 committed May 18, 2023
2 parents 399c884 + fd9c19e commit 7a61504
Show file tree
Hide file tree
Showing 14 changed files with 105 additions and 118 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pr_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: set up JDK 17
uses: actions/setup-java@v3
with:
Expand All @@ -35,6 +36,7 @@ jobs:
base_url: ${{ secrets.base_url }}
run: |
echo base_url=\"$base_url\" >> local.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew

Expand Down
36 changes: 20 additions & 16 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}
buildFeatures {
viewBinding true
Expand All @@ -50,14 +50,12 @@ android {

dependencies {
// hilt
implementation "com.google.dagger:hilt-android:2.44.2"
implementation "com.google.dagger:hilt-android:2.46"
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
kapt "com.google.dagger:hilt-compiler:2.44.2"
kapt "com.google.dagger:hilt-compiler:2.46"

// ktx
implementation "androidx.activity:activity-ktx:1.7.0"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1"
implementation "androidx.fragment:fragment-ktx:1.5.6"
implementation "androidx.fragment:fragment-ktx:1.5.7"

// recyclerview
implementation "androidx.recyclerview:recyclerview:1.3.0"
Expand All @@ -67,16 +65,16 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"

// network
implementation "com.squareup.okhttp3:logging-interceptor:4.10.0"
implementation "com.google.code.gson:gson:2.9.1"
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.11"
implementation "com.google.code.gson:gson:2.10.1"
implementation "com.squareup.retrofit2:retrofit:2.9.0"

// coil
implementation "io.coil-kt:coil:2.2.2"
implementation "io.coil-kt:coil:2.3.0"

// json
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1'
implementation 'com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:0.8.0'
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0'
implementation 'com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:1.0.0'

// timber
implementation "com.jakewharton.timber:timber:5.0.1"
Expand All @@ -90,20 +88,26 @@ dependencies {
implementation "com.kakao.sdk:v2-user:2.8.6"

// shared preference
implementation 'androidx.security:security-crypto-ktx:1.1.0-alpha05'
implementation 'androidx.security:security-crypto-ktx:1.1.0-alpha06'

// firebase
implementation platform('com.google.firebase:firebase-bom:31.1.1')
implementation 'com.google.firebase:firebase-analytics-ktx'

// firebase storage
implementation 'com.google.firebase:firebase-core:21.1.1'
implementation 'com.google.firebase:firebase-storage:20.1.0'
implementation 'com.google.firebase:firebase-storage:20.2.0'

implementation 'androidx.core:core-ktx:1.9.0'
// app compat
implementation 'androidx.appcompat:appcompat:1.6.1'

// material
implementation 'com.google.android.material:material:1.8.0'

// constraint layout
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

// test
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
Expand Down
7 changes: 7 additions & 0 deletions app/src/main/res/font/font_pretendard_bold.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
<font
android:font="@font/pretendard_bold"
android:fontStyle="normal"
android:fontWeight="700" />
</font-family>
7 changes: 7 additions & 0 deletions app/src/main/res/font/font_pretendard_medium.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
<font
android:font="@font/pretendard_medium"
android:fontStyle="normal"
android:fontWeight="500" />
</font-family>
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
<font
android:font="@font/pretendard_medium"
android:fontStyle="normal"
android:fontWeight="500" />
<font
android:font="@font/pretendard_semibold"
android:fontStyle="normal"
android:fontWeight="600" />
<font
android:font="@font/pretendard_bold"
android:fontStyle="normal"
android:fontWeight="700" />
</font-family>
6 changes: 3 additions & 3 deletions app/src/main/res/layout/activity_search.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<EditText
android:id="@+id/et_search_content"
style="@style/TextAppearance.Keyneez.SubtitleMedium18"
style="@style/SubtitleMedium18"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="-12dp"
Expand Down Expand Up @@ -57,15 +57,15 @@

<TextView
android:id="@+id/tv_search_after"
style="@style/TextAppearance.Keyneez.BodySemibold14"
style="@style/BodySemibold14"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/search_result"
android:textColor="@color/gray900" />

<TextView
android:id="@+id/tv_search_count"
style="@style/TextAppearance.Keyneez.BodySemibold14"
style="@style/BodySemibold14"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/search_count"
Expand Down
8 changes: 4 additions & 4 deletions app/src/main/res/layout/item_search_content.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<TextView
android:id="@+id/tv_search_category"
style="@style/TextAppearance.Keyneez.CaptionBold10"
style="@style/CaptionBold10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="9dp"
Expand All @@ -45,7 +45,7 @@

<TextView
android:id="@+id/tv_search_title"
style="@style/TextAppearance.Keyneez.BodyBold16"
style="@style/BodyBold16"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/search_title"
Expand All @@ -55,7 +55,7 @@

<TextView
android:id="@+id/tv_search_date"
style="@style/TextAppearance.Keyneez.CaptionBold10"
style="@style/CaptionBold10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/search_period"
Expand All @@ -65,7 +65,7 @@

<TextView
android:id="@+id/tv_search_fee"
style="@style/TextAppearance.Keyneez.CaptionMedium10"
style="@style/CaptionMedium10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/search_fee"
Expand Down
22 changes: 0 additions & 22 deletions app/src/main/res/values-night/themes.xml

This file was deleted.

Loading

0 comments on commit 7a61504

Please sign in to comment.