Seemingly Online
close
프로필 배경
프로필 로고

Seemingly Online

  • 카테고리 (571)
    • Language (250)
      • 알고리즘 (100)
      • Java (144)
      • python (2)
      • Kotlin (4)
    • WEB (141)
      • Spring (24)
      • Spring Security (3)
      • Next.js (3)
      • TypeScript (3)
      • JavaScript (45)
      • jQuery (7)
      • CSS (25)
      • XML (3)
      • Maven (1)
      • Gradle (1)
      • JSP (1)
      • Thymeleaf (10)
      • HTML (11)
      • MyBatis (1)
      • JPA (3)
    • App (45)
      • Flutter (34)
      • Dart (4)
      • Android (2)
      • IOS (3)
      • Firebase (2)
    • Git (6)
      • GitHub (6)
    • AWS (15)
      • SCT (2)
      • Amazon Aurora (1)
      • S3 (2)
      • EventBridge (1)
      • EC2 (7)
      • EFS (1)
    • DataBase (44)
      • MySQL (19)
      • Oracle SQL (19)
      • Postgre-SQL (6)
    • OS (33)
      • Linux (27)
      • Windows (1)
      • Mac (5)
    • Tool (15)
      • DocKer (6)
      • Intellij (7)
      • VScode (2)
    • IT (17)
      • Developer-etc (13)
      • 개발상식 (4)
    • CodePen (2)
      • 캐러셀 (2)
  • 홈
  • 방명록
Flutter에서 Android SDK 35 및 NDK 충돌 해결 정리

Flutter에서 Android SDK 35 및 NDK 충돌 해결 정리

2025-07-211. 문제 A failure occurred while executing com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask$TaskAction > Android resource linking failed aapt2 ... Failed to load resources table in APK '/Users/xxx/Library/Android/sdk/platforms/android-35/android.jar'. error: failed to load include path ... 또는* What went wrong:Execution failed for task ':app:processDebug..

  • format_list_bulleted App/Flutter
  • · 2025. 7. 21.
  • textsms
firebase_database: Lexical or Preprocessor Issue (Xcode): Include of non-modular header inside framework module 해결 방법

firebase_database: Lexical or Preprocessor Issue (Xcode): Include of non-modular header inside framework module 해결 방법

2025-02-20 1. 방법 Xcode => Runner => Build Settings and put "Allow Non-modular Includes In Framework Modules" to "yes" Xcode 상의 위의 위치로 이동해 아래 설정값을 Yes 로 바꿔주면 해결 된다. 메인 이미지 출처 : 사진: Unsplash의Josh Hild

  • format_list_bulleted App/IOS
  • · 2025. 2. 20.
  • textsms
Xcode 기존 Archive 위치

Xcode 기존 Archive 위치

2024-11-211. 방법 Window > Organizer > Products > Archives 참고 링크 https://stackoverflow.com/questions/7377162/xcode-but-where-are-our-archives Xcode - But... Where are our archives?I've submitted three versions of my app onto the App Store using the Build and Archive commands. But... Where are those archives? I've just learnt that I just need them to be able to read crashl...stackoverflow.com 메인 이미..

  • format_list_bulleted App/IOS
  • · 2024. 11. 21.
  • textsms
Error: Method not found: 'UnmodifiableUint8ListView'.UnmodifiableUint8ListView(Uint8List(0)); 해결 방법

Error: Method not found: 'UnmodifiableUint8ListView'.UnmodifiableUint8ListView(Uint8List(0)); 해결 방법

2024-11-041.  해결 방법  자신의 프로젝트 경로로 이동 후 아래 명령어 사용 - flutter pub cache clean- flutter channel stable - flutter pub get 위에 명령어로 안될 경우 아래 명령어 다시 실행- flutter pub cache clean- flutter pub get- flutter pub upgrade 2. Error: CocoaPods's specs repository is too out-of-date to satisfy dependencies. 실행해보고 위에 에러 추가 발생시 아래 순서 대로 실행  1. 자신의 프로젝트 /ios 폴더에서 Podfile.lock 파일을 제거2. 터미널에서 자신의 프로젝트 ios 폴더로 이동 후 아래 명..

  • format_list_bulleted App/Flutter
  • · 2024. 11. 4.
  • textsms
iOS 웹뷰에서 클릭 시 발생하는 회색 플리커 현상 제거하기

iOS 웹뷰에서 클릭 시 발생하는 회색 플리커 현상 제거하기

2024-06-13iOS 웹뷰에서 onclick 이벤트를 처리할 때 클릭된 영역에 회색 플리커 현상이 나타나는 문제를 경험하신 적이 있나요? 이는 웹 콘텐츠가 기본적으로 적용하는 클릭 피드백 효과로 인해 발생합니다. 이 블로그 포스트에서는 이러한 클릭 피드백 효과를 제거하는 방법을 소개해 드리겠습니다.1. -webkit-tap-highlight-color가장 간단한 방법은 CSS의 -webkit-tap-highlight-color 속성을 사용하는 것입니다. 이 속성을 통해 클릭 피드백 효과를 완전히 제거할 수 있습니다.  * { -webkit-tap-highlight-color: transparent;} 이 코드를 스타일 시트에 추가하면 페이지의 모든 요소에서 탭 하이라이트 효과가 제거됩니다.2. ..

  • format_list_bulleted App/IOS
  • · 2024. 6. 13.
  • textsms
Flutter에서 iOS 앱의 로컬 네트워크 접근 설정하기

Flutter에서 iOS 앱의 로컬 네트워크 접근 설정하기

2024-05-31 Flutter로 iOS 앱을 개발하면서 로컬 네트워크에 있는 서버에 접근해야 할 때가 있습니다. 이때 iOS 14 이상에서는 NSLocalNetworkUsageDescription을 설정해야 하며, HTTP를 사용하는 경우에는 ATS(App Transport Security) 설정도 필요합니다. 이번 포스트에서는 Info.plist 파일을 수정하여 이러한 설정을 추가하는 방법을 소개합니다.1. Info.plist 파일이란?Info.plist 파일은 iOS 앱의 설정 파일로, 앱이 실행될 때 필요한 각종 설정과 권한을 정의합니다. 이 파일은 Flutter 프로젝트의 ios/Runner 디렉토리에 위치해 있습니다.2. Info.plist 파일 수정하기1.Info.plist 파일 열기 먼저..

  • format_list_bulleted App/Flutter
  • · 2024. 5. 31.
  • textsms
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • ···
  • 8
  • navigate_next
공지사항
전체 카테고리
  • 카테고리 (571)
    • Language (250)
      • 알고리즘 (100)
      • Java (144)
      • python (2)
      • Kotlin (4)
    • WEB (141)
      • Spring (24)
      • Spring Security (3)
      • Next.js (3)
      • TypeScript (3)
      • JavaScript (45)
      • jQuery (7)
      • CSS (25)
      • XML (3)
      • Maven (1)
      • Gradle (1)
      • JSP (1)
      • Thymeleaf (10)
      • HTML (11)
      • MyBatis (1)
      • JPA (3)
    • App (45)
      • Flutter (34)
      • Dart (4)
      • Android (2)
      • IOS (3)
      • Firebase (2)
    • Git (6)
      • GitHub (6)
    • AWS (15)
      • SCT (2)
      • Amazon Aurora (1)
      • S3 (2)
      • EventBridge (1)
      • EC2 (7)
      • EFS (1)
    • DataBase (44)
      • MySQL (19)
      • Oracle SQL (19)
      • Postgre-SQL (6)
    • OS (33)
      • Linux (27)
      • Windows (1)
      • Mac (5)
    • Tool (15)
      • DocKer (6)
      • Intellij (7)
      • VScode (2)
    • IT (17)
      • Developer-etc (13)
      • 개발상식 (4)
    • CodePen (2)
      • 캐러셀 (2)
최근 글
인기 글
최근 댓글
태그
  • #자바기초
  • #Java8
  • #자바공부
  • #backjoon
  • #백준
  • #Java
  • #자바알고리즘
  • #백준알고리즘
  • #BOJ
  • #자바
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바