패키지 생성
flutter create --org com.test [project_name]
인스톨
flutter pub get
초기화
flutter clean
build시 스트리밍 동영상이 안되는 경우
<uses-permission android:name="android.permission.INTERNET"/>
Android 9 이상 https 이슈 처리
android:usesCleartextTraffic="true"
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gvideo">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name="io.flutter.app.FlutterApplication"
android:label="gvideo"
android:usesCleartextTraffic="true"
android:icon="@mipmap/ic_launcher">
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>
https://youngest-programming.tistory.com/19
[안드로이드] http 프로토콜 접속시 clearText관련 에러사항 처리 ( Cleartext Http Traffic )
네트워킹 http 프로토콜에 접속하는 작업을 할 경우 Cleartext Http Traffic이라는 에러가 뜨는 경우가 있다. 이것은 안드로이드 API 28레벨부터 네트워크 보안정책때문에 생기는 오류이다. 위 그림은 버튼을 누..
youngest-programming.tistory.com
https://dalgonakit.tistory.com/m/120?category=808568
Flutter FCM (Firebase Cloud Messaging) 적용부터 사용까지 (Android, iOS)
이번에는 안드로이드와 아이폰을 동시에 Push 지원해 주는 FCM을 연결해보고 직접 푸쉬를 보내는 방법까지 다뤄보겠습니다. 이 강좌를 언제 올릴까....... 고민...... 고민...... 고민........ 하다가 이제야 올려..
dalgonakit.tistory.com
https://firebase.google.com/docs/flutter/setup?hl=ko
Flutter 앱에 Firebase 추가 | Firebase
이 가이드에 따라 Flutter 앱에 Firebase 제품을 추가하세요. 1단계: 환경 설정 다음 항목 설치를 비롯하여 사용 중인 운영 체제에 맞는 Flutter를 설치합니다. Flutter SDK 지원 라이브러리 플랫폼별 소프트웨어 및 SDK Android 스튜디오, IntelliJ, Xcode, VS Code 등 선호하는 편집기 또는 IDE를 설치합니다. 선호하는 편집기 또는 IDE에서 Flutter 앱을 엽니다. iOS 개발 — 앱이 iOS 8 이상
firebase.google.com
https://flutter.dev/docs/deployment/android
Build and release an Android app
How to prepare for and release an Android app to the Play store.
flutter.dev
https://pub.dev/packages/video_player
video_player | Flutter Package
Flutter plugin for displaying inline video with other Flutter widgets on Android and iOS.
pub.dev
https://github.com/brianegan/chewie
brianegan/chewie
The video player for Flutter with a heart of gold. Contribute to brianegan/chewie development by creating an account on GitHub.
github.com
https://flutter.github.io/samples/#/
Flutter Gallery
flutter.github.io
https://github.com/iampawan/FlutterExampleApps
iampawan/FlutterExampleApps
[Example APPS] Basic Flutter apps, for flutter devs. - iampawan/FlutterExampleApps
github.com
https://github.com/Solido/awesome-flutter
Solido/awesome-flutter
An awesome list that curates the best Flutter libraries, tools, tutorials, articles and more. - Solido/awesome-flutter
github.com
https://github.com/mitesh77/Best-Flutter-UI-Templates
mitesh77/Best-Flutter-UI-Templates
completely free for everyone. Its build-in Flutter Dart. - mitesh77/Best-Flutter-UI-Templates
github.com
https://github.com/syncfusion/flutter-examples
syncfusion/flutter-examples
This repository contains the Syncfusion Flutter UI widgets examples and the guide to use them. - syncfusion/flutter-examples
github.com
https://github.com/diegoveloper/flutter-samples
diegoveloper/flutter-samples
Flutter Samples. Contribute to diegoveloper/flutter-samples development by creating an account on GitHub.
github.com
https://github.com/cingulo/flutter-sample
cingulo/flutter-sample
A fully working boilerplate sample Flutter app implementation. - cingulo/flutter-sample
github.com
https://medium.com/aviabird/top-10-open-source-flutter-apps-997afff4f1b8
Top 10 open source flutter apps
A list of top 10 awesome open source applications built with Flutter
medium.com
https://codesundar.com/flutter-push-notification
'개발 > flutter' 카테고리의 다른 글
[fcm] postman으로 fcm 푸시알림 전송 (0) | 2021.10.25 |
---|---|
[flutter] flutter doctor 시 Android Studio not found at =/Contents 오류발생 (0) | 2021.06.09 |
[GetX] Flutter GetX (0) | 2021.02.17 |
[flutter] 생명주기 (0) | 2020.01.09 |