Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ android {
versionName libs.versions.versionName.get()

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a'
}
buildConfigField "String", "RUNNECT_DEV_URL", properties["RUNNECT_DEV_URL"]
buildConfigField "String", "RUNNECT_NODE_URL", properties["RUNNECT_NODE_URL"]
buildConfigField "String", "RUNNECT_PROD_URL", properties["RUNNECT_PROD_URL"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,10 @@ import androidx.compose.ui.unit.sp
import com.runnect.runnect.R

val PretendardFontFamily = FontFamily(
Font(R.font.pretendard_thin, FontWeight.Thin),
Font(R.font.pretendard_extralight, FontWeight.ExtraLight),
Font(R.font.pretendard_light, FontWeight.Light),
Font(R.font.pretendard_regular, FontWeight.Normal),
Font(R.font.pretendard_medium, FontWeight.Medium),
Font(R.font.pretendard_semibold, FontWeight.SemiBold),
Font(R.font.pretendard_bold, FontWeight.Bold),
Font(R.font.pretendard_extrabold, FontWeight.ExtraBold),
Font(R.font.pretendard_black, FontWeight.Black),
)

@Immutable
Expand Down
Binary file removed app/src/main/res/drawable-hdpi/splash.png
Binary file not shown.
Binary file added app/src/main/res/drawable-hdpi/splash.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-mdpi/splash.png
Binary file not shown.
Binary file added app/src/main/res/drawable-mdpi/splash.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-xhdpi/splash.png
Binary file not shown.
Binary file added app/src/main/res/drawable-xhdpi/splash.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-xxhdpi/splash.png
Binary file not shown.
Binary file added app/src/main/res/drawable-xxhdpi/splash.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/src/main/res/drawable-xxxhdpi/splash.png
Binary file not shown.
Binary file added app/src/main/res/drawable-xxxhdpi/splash.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Binary file removed app/src/main/res/font/pretendard_extrabold.otf
Binary file not shown.
Binary file removed app/src/main/res/font/pretendard_extralight.otf
Binary file not shown.
Binary file removed app/src/main/res/font/pretendard_light.otf
Binary file not shown.
Binary file removed app/src/main/res/font/pretendard_thin.otf
Binary file not shown.
27 changes: 0 additions & 27 deletions app/src/main/res/font/runnect_font.xml
Original file line number Diff line number Diff line change
@@ -1,20 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
<font
android:font="@font/pretendard_thin"
android:fontStyle="normal"
android:fontWeight="100"
/>
<font
android:font="@font/pretendard_extralight"
android:fontStyle="normal"
android:fontWeight="200"
/>
<font
android:font="@font/pretendard_light"
android:fontStyle="normal"
android:fontWeight="300"
/>
<font
android:font="@font/pretendard_regular"
android:fontStyle="normal"
Expand All @@ -35,16 +20,4 @@
android:fontStyle="normal"
android:fontWeight="700"
/>
<font
android:font="@font/pretendard_extrabold"
android:fontStyle="normal"
android:fontWeight="800"
/>
<font
android:font="@font/pretendard_black"
android:fontStyle="normal"
android:fontWeight="900"
/>


</font-family>
Loading