Android 는 어떻게 네 이 티 브 앱 에 Flutter 를 삽입 합 니까?

3179 단어 AndroidappFlutter
본문 참고 문서Add Flutter to existing apps.
우선 실행 가능 한 네 이 티 브 프로젝트 가 있 습 니 다.
STEP 1:새로 만 든 Flutter module
터미널 은 프로젝트 루트 디 렉 터 리 에 들 어가 서flutter create -t module ‘module이름 을 실행 합 니 다.예 를 들 어flutter create -t module flutter-native실행 이 끝나 면 프로젝트 디 렉 터 리 에 module 이 생 성 되 었 습 니 다.

두 번 째 단계:동기 Flutter module 의존
새로 생 성 된 Flutter module 디 렉 터 리 의.android 디 렉 터 리 에 들 어가 면 명령 은cd .android/이 고 실행gradlew flutter:assembleDebug,mac 아래./gradlew flutter:assembleDebug입 니 다.
이 과정 은 네트워크 상황 에 따라 좀 길 수 있 습 니 다.
종료 후.android/Flutter/build/outputs/aar/디 렉 터 리 에서 생 성flutter-debug.aarSTEP 3:JDK 버 전 설정
app 의 build.gradle 파일 에 추가:compileOptions { sourceCompatibility 1.8 targetCompatibility 1.8 } STEP 4:Flutter module 의존settings.gradle에 가입

include ':app'
setBinding(new Binding([gradle: this]))
evaluate(new File(
  settingsDir.parentFile,
  'FlutterNativeApplication/flutter_native/.android/include_flutter.groovy'
))
메모:마지막 매개 변 수 는 전체 경 로 를 쓰 는 것 이 좋 습 니 다!
app/build.gradle 에서

dependencies {
 ……
 implementation project(':flutter')
}
이 준비 과정 이 끝나 면 코드 테스트 를 해 보 세 요.저 는 Fragment 방식 을 사용 합 니 다.물론 뷰 방식 도 있다.
MainActivity.kt ↓

class MainActivity : AppCompatActivity() {

 override fun onCreate(savedInstanceState: Bundle?) {
  super.onCreate(savedInstanceState)
  supportRequestWindowFeature(Window.FEATURE_NO_TITLE)
  setContentView(R.layout.activity_main)
  val tx = supportFragmentManager.beginTransaction()
  tx.replace(R.id.content, Flutter.createFragment("route"))
  tx.commit()
 }
}
activity_main.xml ↓

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context=".MainActivity">

 <FrameLayout
  android:id="@+id/content"
  android:layout_width="match_parent"
  android:layout_height="match_parent"></FrameLayout>

</android.support.constraint.ConstraintLayout>

이상 은 안 드 로 이 드 가 네 이 티 브 앱 에 Flutter 를 어떻게 삽입 하 는 지 에 대한 상세 한 내용 입 니 다.안 드 로 이 드 네 이 티 브 앱 에 Flutter 를 삽입 하 는 지 에 대한 자 료 는 다른 관련 글 을 주목 하 세 요!

좋은 웹페이지 즐겨찾기