Android/Bug(5)
-
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 -
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 -
@HiltAndroidApp to have a value. Did you forget to apply the Gradle Plugin? 해결
에러 로그 error: [Hilt] public final class OpggApplication extends android.app.Application { ^ Expected @HiltAndroidApp to have a value. Did you forget to apply the Gradle Plugin? (dagger.hilt.android.plugin) See https://dagger.dev/hilt/gradle-setup.html [Hilt] Processing did not complete. See error above for details. 원인 kotlin 1.5.20 kapt 관련해서 생기는 문제 해결 방법 1. kotlin version 을 낮춤 > 1.5.20 에서 1.5.10 ..
2022.05.14 -
Android Gradle plugin requires Java 11 to run
Settings -> Build Tools -> Gradle -> Gradle JDK 1.8에서 11로 변경
2021.11.09 -
INSTALL_FAILED_TEST_ONLY
발생이유 : 테스트 목적으로 만들어진 앱 이라서 발생 1. adb -t 옵션을 주어 설치 ex) $ adb install -t 'app-release.apk' 2. testOnly 기능을 false로 변경 gradle.properties 에 아래 옵션 적용 android.injected.testOnly=false
2021.05.06