android,kotlin2022. 11. 18. 10:32

[Android] "zsh : command not found : adb" 오류 해결

 

내 경우에는 bash_profile이 실행 안되서 문제되는거였다..

 

terminal에서 source .bash_profile실행 시킨후

 

adb 하면 version체크 확인 되고,

 

adb devices 하면 usb붙어있는 device목록이 나오게 된다. 

 

[참조] https://life-with-coding.tistory.com/449

 

[Android] "zsh : command not found : adb" 오류 해결

인트로 안녕하세요 :D 오늘은 안드로이드 앱을 스마트폰을 통해 실행시킬 수 있는 ADB(android debug brige) 실행 오류 해결 방법에 대해 씁니다. ADB(android debug bridge) 는 USB/WIFI를 통해 안드로이드 앱을

life-with-coding.tistory.com

 

Posted by thdeodls85
android,kotlin2022. 11. 14. 20:32
android,kotlin2022. 8. 25. 15:47

[android]data file empty on android 11 해결방법

 

android data 패키지 안에 있는 파일이 empty로 나온다..

 

볼려면 밑에 링크처럼 앱 받아서 확인하면 된다. 

 

[참조] https://www.youtube.com/watch?v=FkoiyD9xfNA 

 

Posted by thdeodls85
android,kotlin2022. 8. 8. 18:56
android,kotlin2022. 8. 5. 15:48

[kotlin] assemble release , debug 방법

 

./gradlew assembleRelease

 

./gradlew assembleDebug

Posted by thdeodls85
android,kotlin2022. 7. 1. 13:48

[android]DSL element 'android.dataBinding.enabled' is obsolete and has been replaced with 'android.buildFeatures.dataBinding' 해결방법

 

android {

    viewBinding {
        enabled = true
    }

}

 

--------------------------->

android {

    buildFeatures {

        viewBinding = true

    }

}

Posted by thdeodls85
android,kotlin2022. 6. 29. 14:39

[android]A problem occurred starting process 'command 'ndk-build''해결방법

 

ndk 설치하고 경로 설정하면 된다...

 

local.properties ->

 

ndk.dir="경로/ndk-build"

 

Posted by thdeodls85
android,kotlin2022. 6. 28. 18:21

[android]keystore file not found for signing config 'debug' 해결방법

 

debug.keystore 를 경로 위치에 넣어주면 된다. 

Posted by thdeodls85