일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- compare
- java
- Barcode
- Unity
- stream
- atmega328
- length
- mfc
- aduino
- SERIAL
- APP
- UNO
- Contour
- parameter
- memory
- Android
- preprocessing
- Binary
- Overloading
- Class
- flutter
- inheritance
- Pointer
- wpf
- Read
- Encapusulation
- sensor
- public
- digitalRead
- file access
- Today
- Total
목록dependencies (3)
폴크(FOLC)
# Gradle 관련 이슈 발생 Launching lib\main.dart on sdk gphone x86 in debug mode... Running Gradle task 'assembleDebug'... FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':flutter_unity_widget:compileDebugAidl'. > Could not resolve all task dependencies for configuration ':flutter_unity_widget:debugCompileClasspath'. > Could not resolve project ..
# 내장된 웹 브라우저 컴포넌트로 앱을 임베딩하는 것을 말한다. 즉, 앱 내에 웹 브라우저(HTML iframe)를 넣는 것이다. > 웹 페이지를 보기 위해서 또는 앱 안에서 HTML을 호출하여 앱을 구현하는 하이브리드 형태로 이용된다. 1. pubspec.yaml 설정 추가 # dependencies - webview_flutter : ^1.0.7 2. /android/app/src/main/AndroidManifest.xml 옵션 설정하기 # 메니페시트 영역 # 안드로이드 영역 android:usesCleartextTraffic="true"> 3. /android/app/src/build.gradle 설정 변경 # minSDKVersion 16 -> 17 로 변경 4. 소스 코드 변경하기 # 자동 생..
# 안드로이드 스튜디오에서 채택한 빌드 배포 도구(release tool) 이다. > Ant, Maven, Gradle 등의 라이브러리 종류가 존재 한다. # 프로젝트를 생성하면 기본적으로 아래와 같이 구조를 제공한다. > Android Studio 에서 Project 내에 Gradle 을 같이 생성 # Eclipse 의 경우에는 통합하여 관리하지만 Android Studio는 코드 편집 부분과 빌드 도구를 분리 시켜서 관리 한다. > 그런 이유로, 간혹 프로젝트의 동기화가 진행되지 않아서 error 나 warning 같은 compile 오류가 발생하기도 한다. # Project - Android - App - src - build.gradle 을 살펴보면 다음과 같다. > apply plugin : 플..