728x90
반응형
SMALL
Installation did not succeed.
The application could not be installed.
List of apks:
[0] 'C:\Users\kimhy\Documents\lecture\boostCourse\24.MyProgressBara\app\build\outputs\apk\debug\app-debug.apk'
Installation failed due to: ''cmd package install-create -r -t --user current --full --dont-kill -S 3293889' returns error 'Unknown failure: cmd: Can't find service: package''
원인: 설치가 되지 않는 것 보니 용량 문제인 것 같다.
해결: AVD Manager - 우클릭 - Wipe Data
Execution failed for task ':app:checkDebugDuplicateClasses'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
원인: ?
해결: gradle.properties 에 다음과 같은 코드 추가
android.enableJetifier=true
Could not find com.google.firebase:firebase-analytics-ktx:.
Required by:
project :app
Search in build.gradle files
해결: build.gradle(app) 에서 analytics-ktx 를 없앤다.
멀티덱스에러
해결: build.gradle(app) 에 다음코드 추가
android {
defaultConfig {
/* 멀티덱스 */
multiDexEnabled true
}
dependencies {
/* 멀티덱스 */
implementation 'androidx.multidex:multidex:2.0.1'
}
ScrollView can host only one direct child
원인: 스크롤뷰는 하나의 자식만 갖는다.
해결: 나머지 레이아웃을 지운다.
메뉴얼: https://developer.android.com/studio/build/multidex?hl=ko#kts{:target="_blank"}
Execution failed for task ':app:processDebugGoogleServices'.
> No matching client found for package name 'io.github.dev_connor.a9mynavigationbar'
해결: google-services.json 파일의 패키지명을 수정하거나 파일을 다시 받는다.
client 리스트 내의 client_info - android_client_info 객체 내부의 패키지이름과
oauth_client 리스트 내의 android_info 객체 내부의 패키지 이름 두 개를 변경하면 된다.
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:149612368498:android:181dc3d2b2215509a028eb",
"android_client_info": {
"package_name": "io.github.dev_connor.a9mynavigationbar"
}
},
"oauth_client": [
{
"client_id": "149612368498-k0cjqgej85mo0p9dn76q5cf6ohb5q10s.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "io.github.dev_connor.a9mynavigationbar",
728x90
반응형
LIST