Skip to content

Commit

Permalink
fix: 프로가드 수정 및 버전 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhz committed Apr 19, 2024
1 parent f1246d4 commit 82fc764
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
applicationId = "com.easyhz.picly"
minSdk = 26
targetSdk = 34
versionCode = 12
versionCode = 13
versionName = "2.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
3 changes: 2 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
-keep class com.google.firestore.** { *; }
-keep class com.google.firebase.** { *; }
-keep class io.grpc.** { *; }
-keepclassmembers class com.easyhz.picly.data.entity.** { *; }
-keep class com.easyhz.picly.data.entity.** { *; }
-keep class com.easyhz.picly.domain.model.** { *; }


# OkHttp
Expand Down
16 changes: 8 additions & 8 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="androidx.navigation.fragment.NavHostFragment"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_main"
/>
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="androidx.navigation.fragment.NavHostFragment"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_main"
/>
</layout>

0 comments on commit 82fc764

Please sign in to comment.