반응형 안드로이드/안드로이드 버그2 [FIXED]CLEARTEXT communication to xxx.xxx.xxx.xx not permitted by network security policy 발생 java.lang.RuntimeException- java.net.UnknownServiceException- CLEARTEXT communication to xxx.xxx.xxx.xx not permitted by network security policy 환경 defaultConfig { applicationId "com.your.application" minSdk 24 targetSdk 30 versionCode 1 versionName "1.0" } dependencies { implementation 'androidx.core:core-ktx:1.7.0' implementation 'androidx.appcompat:appcompat:1.4.0' } 원인 Retrofit2 라이브러리를 사용.. 2021. 11. 28. The minCompileSdk (31) specified in adependency's AAR metadata is greater than this module's compileSdkVersion (android-30).Dependency: androidx.core:core-ktx:1.7.0. 발생 The minCompileSdk (31) specified in a dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties) is greater than this module's compileSdkVersion (android-30). Dependency: androidx.core:core-ktx:1.7.0. 환경 defaultConfig { applicationId "com.your.application" minSdk 24 targetSdk 30 versionCode 1 versionName "1.0" } dependencies { implementation 'androidx.core:core-ktx:.. 2021. 11. 25. 이전 1 다음 반응형