Android(66)
-
Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.
java.lang.IllegalArgumentException: com.smg.nao: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies or bubbles. at android.app.PendingIntent...
2022.07.05 -
storeFile 상대경로 지정
상위 파일경로가 변경되어도 현재 디렉토리 위치를 가져와서 파일을 읽어오도록 설정 storeFile new File(System.properties['user.dir'], "파일경로.jks")
2022.07.03 -
Proguard Rule 사용방법
-dontwarn 패키지명.** : 지정해서 경고 무시 -keep class 패키지명.** : 난독화가 필요하지 않은 경우 -ignorewarnings : 경고 무시 -dontoptimize : 최적화 하지 않기 -dontshrink : 사용하지 않는 메소드 유지 -keepclassmembers : 특정 클래스 멤버 원상태 유지 -keepattributes : 내부 클래스 원상태 유지 적용 -keep class org.xmlpull.v1.** { *; } -dontwarn org.ejml.** -dontwarn org.xmlpull.** -dontwarn io.reactivex.** -dontwarn com.squareup.okhttp.** -dontwarn com.thoughtworks.xstream...
2022.07.01 -
Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.
문제발생 * What went wrong: An exception occurred applying plugin request [id: 'com.android.application'] > Failed to apply plugin 'com.android.internal.application'. > Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8. Your current JDK is located in C:\Program Files\Java\jre1.8.0_311 You can try some of the following options: - changing the IDE settings. - changing the..
2022.06.30 -
Glide WithCrossFade 사용시 placeholder가 사라지지 않음
보호되어 있는 글입니다.
2022.06.04 -
Splash (스플래시 화면 크기)
스플래시 화면 크기 시작 화면 아이콘은 다음과 같이 적응형 아이콘 과 동일한 사양을 사용 합니다. 브랜드 이미지: 200×80 dp여야 합니다. 아이콘 배경이 있는 앱 아이콘: 240×240 dp이고 지름이 160 dp인 원 안에 맞아야 합니다. 아이콘 배경이 없는 앱 아이콘: 288×288 dp이고 지름이 192 dp인 원 안에 맞아야 합니다. 예를 들어 이미지의 전체 크기가 300×300dp인 경우 아이콘은 지름이 200dp인 원 안에 맞아야 합니다. 원 밖의 모든 것은 보이지 않게 됩니다(마스크됨). 그림 3 : 각각 단색 및 투명 배경의 시작 화면 아이콘 크기 참고 사이트 https://developer.android.com/guide/topics/ui/splash-screen Splash scr..
2022.05.27