본문 바로가기
반응형

Android22

[Android] INSTALL_FAILED_OLDER_SDK 오류 간단한 테스트 apk를 만들었는데 ad install을 하니까 하기와 같은 에러가 발생한다. Failure [INSTALL_FAILED_OLDER_SDK: Failed parse during installPackageLI: /data/app/vmdl1559124391.tmp/base.apk (at Binary XML file line #5): Requires newer sdk version #31 (current version is #30)] 검색을 해보니 AndroidManifest.xml에 minSdkVersion을 설정하면 된다고 해서 아래와 같이 수정했으나 해결 안 됨. 결국 app을 빌드한 sdk platform 버전을 31 -> 30으로 내리니까 해결이 되었다. 2023. 2. 16.
[Android] Can't determine type for tag '<macro name="m3_comp_assist_chip_container_shape">?attr/shapeAppearanceCornerSmall</macro>' Android Studio Arctic Fox 버전에서 간단한 empty app을 만들어서 run app을 했을 때 하기 에러가 발생했다. Can't determine type for tag '?attr/shapeAppearanceCornerSmall' build.gradle을 아래와 같이 수정하여 해결 implementation 'androidx.appcompat:appcompat:1.6.0' implementation 'com.google.android.material:material:1.8.0' -> implementation 'androidx.appcompat:appcompat:1.4.2' implementation 'com.google.android.material:material:1.6.0' 2023. 2. 13.
[Android] 안드로이드용 간단한 테스트앱 UI 구성 안드로이드를 개발하다보면 기능 확인용으로 간단한 앱을 만드는 일이 잦다. 버튼 하나 짜리 앱을 만들 경우 상단에 TextView 한개, 하단에 Button을 한개 배치했음. 2023. 2. 13.
[Android] 인텐트로 구글 기본 앱 연동하기 기능 테스트를 할 때 인텐트를 받았을 때 잘 받았는지 확인할 수 있는 방법이 로그도 있지만 구글에서 기본적으로 지원하는 기본기능들을 인텐트로 구동시키는 방법도 있다. 1. 카메라 private static final int REQUEST_IMAGE_CAPTURE = 1; Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent, REQUEST_IMAGE_CAPTURE); 2. 인터넷 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.Google.com")); startActivity(intent);.. 2023. 2. 9.
반응형