패키지 생성
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
https://dalgonakit.tistory.com/m/120?category=808568
https://firebase.google.com/docs/flutter/setup?hl=ko
https://flutter.dev/docs/deployment/android
https://pub.dev/packages/video_player
https://github.com/brianegan/chewie
https://flutter.github.io/samples/#/
https://github.com/iampawan/FlutterExampleApps
https://github.com/Solido/awesome-flutter
https://github.com/mitesh77/Best-Flutter-UI-Templates
https://github.com/syncfusion/flutter-examples
https://github.com/diegoveloper/flutter-samples
https://github.com/cingulo/flutter-sample
https://medium.com/aviabird/top-10-open-source-flutter-apps-997afff4f1b8
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 |