Android Gradle Plugin 7.0.0부터 AndroidManifest의 package 속성 deprecated

Android Studio - namespace error

Android Gradle Plugin 7.0.0 이상에서는 모듈의 namespace를 build.gradle 또는 build.gradle.kts 파일에 명시적으로 설정하도록 요구합니다. 이 변경 사항은 빌드 시스템과 프로젝트 구성 간의 명확성을 높이고, 여러 모듈 프로젝트에서의 충돌 가능성을 줄이기 위해 도입되었습니다. 이전에는 AndroidManifest.xml에서 package 속성을 통해 패키지 이름을 정의했지만, 이제는 Gradle 파일의 namespace 속성을 통해 패키지 이름을 설정합니다. 이러한 요구 사항에 충족되지 않는다면 아래와 … Read more

평점

[React Native]pod install 중 use_modular_headers! 설정을 요구하는 오류

Podfile 내용

오류 메세지 [!] The following Swift pods cannot yet be integrated as static libraries: The Swift pod `FirebaseCoreInternal` depends upon `GoogleUtilities`, which does not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set `use_modular_headers!` globally in your Podfile, … Read more

평점

SQL 가상의 Insert 테스트하는 법

sql fiddle

SQL 쿼리, 특히 INSERT 문을 테스트하는 방법은 여러 가지가 있습니다. 가상의 데이터를 사용하여 INSERT 문을 테스트하는 것은 실제 데이터베이스 환경에서의 영향을 최소화하면서 SQL 쿼리가 예상대로 동작하는지 검증할 수 있는 좋은 방법입니다. 여기에 몇 가지 방법을 정리해보았으니, 테스트 목적에 알맞는 방법을 찾아서 적용해 보세요. Insert 테스트 방법 세 가지 1. 트랜잭션 사용 가장 일반적인 방법 중 하나는 INSERT 문을 트랜잭션 내에서 실행한 … Read more

평점

[React Native]0.75.2에 맞는 iOS 버전

1~2년이 된 리액트 네이티브 프로젝트를 빌드하려니, 여러 빌드 오류들이 징그러울 정도로 계속 생긴다… 플러터 프로젝트는 똑같은 기간이 지나고 새로운 PC에서 돌려도 잠깐의 업데이트만 거치면 바로 되는데 RN은 그런 거 없다. 온갖 서드파티 라이브러리들의 버전을 맞춰주어야 하고 arm64, 안드로이드 SDK 버전, iOS 버전, ruby 버전 등등 온갖 잡다한 환경들을 조각 퍼즐 맞춰주듯이 마련해줘야 한다. 이번에는 ios … Read more

평점

[React Native]CocoaPods could not find compatible versions for pod “FirebaseFirestore” 오류

터미널 Pod install 결과 메세지

[!] CocoaPods could not find compatible versions for pod “FirebaseFirestore”:   In Podfile:     FirebaseFirestore (from `https://github.com/invertase/firestore-ios-sdk-frameworks.git`)     RNFBFirestore (from `../node_modules/@react-native-firebase/firestore`) was resolved to 11.5.0, which depends on       Firebase/Firestore (= 7.11.0) was resolved to 7.11.0, which depends on         FirebaseFirestore (~> 7.11.0) Pod install 중 발생한 에러입니다. … Read more

평점

“You may need an additional loader to handle the result of these loaders” 오류

GPT 및 검색의 도움을 받아보니 웹팩에서 특정한 파일 형식을 처리할 수 없을 때 발생하는 일반적인 문제. 전체 오류 메세지 해결 필자의 경우엔 react-scripts 패키지 재설치로 바로 해결되었다. 해당 프로젝트의 세팅 파일들 package.json webpack.config.js tsconfig.json .babelrc 평점

평점

리액트 PropTypes 인식 불가 에러

static propTypes = { title: React.PropTypes.string // Error! } 위와 같이 리액트 안에서 Prop 타입을 정해주려 하면 아래와 같은 에러가 출력된다. Movie.js:6 Uncaught TypeError: Cannot read property ‘string’ of undefined at Module../src/Movie.js (Movie.js:6) at __webpack_require__ (bootstrap:784) at fn (bootstrap:150) at Module../src/App.js (App.css?4433:45) at __webpack_require__ (bootstrap:784) at fn (bootstrap:150) at Module../src/index.js (index.css?f3f6:45) at __webpack_require__ (bootstrap:784) at … Read more

평점