-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #467 from BCSDLab/develop
[Update] BusinessApp v1.0.1
- Loading branch information
Showing
163 changed files
with
5,379 additions
and
695 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,95 @@ | ||
# Add project specific ProGuard rules here. | ||
# You can control the set of applied configuration files using the | ||
# proguardFiles setting in build.gradle. | ||
# By default, the flags in this file are appended to flags specified | ||
# in /Users/namhoonkim/Library/Android/sdk/tools/proguard/proguard-android.txt | ||
# You can edit the include path and order by changing the proguardFiles | ||
# directive in build.gradle.kts. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
# Add any project specific keep options here: | ||
|
||
# Begin: Common Proguard rules | ||
-dontwarn com.google.** | ||
# End: Common Proguard rules | ||
|
||
# 에러 발생시 라인 표시 | ||
-keepattributes SourceFile,LineNumberTable | ||
|
||
# jdk 컴파일할 때 발생하는 오류 메시지 방지 | ||
-keepattributes EnclosingMethod | ||
|
||
# 최적화 X | ||
-dontoptimize | ||
|
||
# 사용하지 않는 변수 남김 | ||
-dontshrink | ||
|
||
#public 클래스 난독 시 메서드 호출 문제 발생 가능 | ||
-keep public class * | ||
|
||
# Begin : lib | ||
-keep class com.jakewharton.** { *; } | ||
-keep class com.jpardogo.materialtabstrip.** { *; } | ||
-keep interface com.jakewharton.** { *; } | ||
-keep interface com.jpardogo.materialtabstrip.** { *; } | ||
-keep class com.crashlytics.** { *; } | ||
# End | ||
|
||
|
||
# Begin : material, androidx | ||
-dontwarn com.google.android.material.** | ||
-keep class com.google.android.material.** { *; } | ||
|
||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
-dontwarn androidx.** | ||
-keep class androidx.** { *; } | ||
-keep interface androidx.** { *; } | ||
#End | ||
|
||
|
||
# Begin: Proguard rules for retrofit2 | ||
-dontwarn java.lang.invoke.** | ||
# Platform calls Class.forName on types which do not exist on Android to determine platform. | ||
-dontnote retrofit2.Platform | ||
# Platform used when running on RoboVM on iOS. Will not be used at runtime. | ||
-dontnote retrofit2.Platform$IOS$MainThreadExecutor | ||
# Platform used when running on Java 8 VMs. Will not be used at runtime. | ||
-dontwarn retrofit2.Platform$Java8 | ||
|
||
# retrofit2 POJO model error | ||
-keepclasseswithmembers class * { | ||
@retrofit2.http.* <methods>; | ||
} | ||
#-keep class com.bcsdlab.kap.community.networks.models.** { *; } | ||
#-keepclassmembers class com.bcsdlab.kap.community.networks.models.** { *; } | ||
|
||
# Retain generic type information for use by reflection by converters and adapters. | ||
-keepattributes Signature | ||
# Retain declared checked exceptions for use by a Proxy instance. | ||
-keepattributes Exceptions | ||
# End: Proguard rules for retrofit2 | ||
|
||
# Begin: Proguard rules for okhttp3 | ||
-keep class okhttp3.** { *; } | ||
-keep interface okhttp3.** { *; } | ||
-dontwarn okhttp3.** | ||
-dontwarn okio.** | ||
# End: Proguard rules for okhttp3 | ||
|
||
# Begin: Proguard rules for Firebase | ||
# Authentication | ||
-keepattributes *Annotation* | ||
# Realtime database | ||
-keepattributes Signature | ||
# End: Proguard rules for Firebase | ||
|
||
# Proguard rules for BottomNavigationHelper | ||
#-keepclassmembers class android.support.design.internal.BottomNavigationMenuView { | ||
# boolean mShiftingMode; | ||
#} | ||
-keep class com.kakao.sdk.**.model.* { <fields>; } | ||
-keep class * extends com.google.gson.TypeAdapter | ||
#} | ||
|
||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile | ||
-dontwarn org.jspecify.annotations.NullMarked | ||
-dontwarn top.defaults.checkerboarddrawable.CheckerboardDrawable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.