JAVA/android_studio 2024. 9. 17. 20:46

 

https://documentation.swing2app.co.kr/appguide/appoperation/not-installed2

 

유료버전앱(APK파일) 설치가 안된다면 확인해주세요! | 스윙투앱 도움말

APK파일을 다운 받을시 알 수 없는 오류로 앱 설치가 안되는 경우 확인해주세요 – 유료 버전

documentation.swing2app.co.kr

 

posted by cskimair
:
JAVA/android_studio 2024. 9. 17. 20:27

 

> 아래에서 수정방법

Link

2022. 08. 10. 18:58

테드 퍼미션은 박상권님 github 방문해서 약간 변경된 것을 반영하면 됩니다.

https://github.com/ParkSangGwon/TedPermission 에 있습니다.

2.3.0 버전부터 변경된 거 같습니다. 현재버전은 3.3.0 입니다.

implementation 'io.github.ParkSangGwon:tedpermission-normal:3.3.0'

ArrayList 대신에 List 로 변경하고요.
onPermissionDenied(List<String> deniedPermissions)


TedPermission.with(mContext) 부분은
TedPermission.create() 로 변경해주시면 됩니다.

 

-

https://www.inflearn.com/community/questions/523819/build-gradle%EC%97%90%EC%84%9C-implementation-x27-gun0912-ted-tedpermission-2-2-3-x27-sync%EA%B0%80?srsltid=AfmBOorZXeZDuei2sct3lJSRsnXOgbWuxoC_o5E-a0yZpDalZiRTBGG1

 

build.gradle에서 implementation 'gun09... - 인프런 | 커뮤니티 질문&답변

누구나 함께하는 인프런 커뮤니티. 모르면 묻고, 해답을 찾아보세요.

www.inflearn.com

 

 

posted by cskimair
:
JAVA/android_studio 2024. 9. 17. 16:47

 

-

https://monee1001.tistory.com/28

 

[Android] 에러 문구 - Version 28 (intended for Android Pie and below) is the last version of the legacy support library, so

build.gradle에서 compile 'com.android.support:design:25.0.1'을 추가했더니 Version 28 (intended for Android Pie and below) is the last version of the legacy support library, so we recommend that you migrate to AndroidX libraries when using Android Q

monee1001.tistory.com

 

posted by cskimair
:
JAVA/android_studio 2024. 9. 17. 16:35

 

>Build Error:  Execution failed for task ':app:compileDebugAidl'. > aidl is missing

 

- https://blog.naver.com/PostView.naver?blogId=mjh9082&logNo=220507952791

 

안드로이드 스튜디오 에러 해결!! (Execution failed for task ':app:compileDebugAidl'. > aidl is missing)

안드로이드 스튜이디오에서 소스는 정상인데.. 디버그 했을때!!  밑과 같은 에러가 난다.  그럼 ...

blog.naver.com

 

- 에러화면:

ChatGPT통해서 생성받은 소스가 컴파일시 에러 날때 수정방법:

 > 아래와 같은 에러가 나옴(Target SDK: 32, material, appcompat 의 버젼이 최신상태라서 오히려 에러가 나옴)

 

- 실제 수정화면: app -> 오른쪽 버튼 , open module settings , 

> Compile Sdk Version: 32로 , Build Tools Version: 지워도 됨(또는 Compile Sdk Version보다 작은 값으로)

 

 

- material:1.5.0, appcompat:1.5.1 버젼으로 설정변경.

 

 

- Taget SDK version=32, Target SDK Version=24( Android 7.0), Min SDK Version=24(Android 7.0)으로 변경해줌.

 

 

 

 

posted by cskimair
:
JAVA/android_studio 2024. 9. 16. 12:12

savedInstanceState 는 화면 구성의 변경이 발생할 때 현재 인스턴스에서 데이터를 저장하고 새 인스턴스에서 다시 불러오기 위해 호출되며, 대표적인 구성의 변경으로는 화면모드(가로모드, 세로모드)의 전환, 입력기기(키보드) 변경, 지역 및 언어의 변경 등이 있습니다.

 

 

시스템의 구성이 변경되었을 때 UI를 유지시키는 옵션 중 하나로 사용되며, 메모리에 저장되어 읽고 쓰여집니다.
위의 표에서 볼 수 있듯 사용자가 활동을 완전히 마쳤을 때 즉, 다시 Activity로 돌아올 이유가 없는 경우엔 savedInstanceState를 호출하지 않습니다.

 

 출처:  https://tekken5953.tistory.com/9

 

[안드로이드] savedInstanceState 는 왜 있는걸까?

안녕하세요. 앱개발을 공부하다 문득 onCreate()의 Parameter로 생성되는 savedInstanceState는 도대체 무슨 역할을 할까? 라는 의문이 들어 찾아보았습니다. 활동 상태 변경 앱의 생명주기(활동 수명주기)

tekken5953.tistory.com

 

posted by cskimair
:
JAVA/android_studio 2024. 9. 16. 11:23

 

 

- https://velog.io/@krrong/Android-ListView-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0

 

[Android] ListView 사용하기

ListView 사용하기

velog.io

-> RecyclerView 

posted by cskimair
: