Moop-App / Moop-Android

한국 멀티플렉스 극장의 현재상영작, 개봉예정작 정보를 모아 보여주는 안드로이드 앱입니다.
https://play.google.com/store/apps/details?id=soup.movie
Apache License 2.0
164 stars 17 forks source link

Dynamic Feature Module with Navigation #70

Closed fornewid closed 4 years ago

fornewid commented 4 years ago

설명

Link

fornewid commented 4 years ago

NaverMap SDK의 AndroidManifest.xml에 정의된 것으로 보이는 Component 목록입니다. Base Module에 리소스가 정의되어야 하므로, issue 별도로 stub을 정의해줘야 할 듯...?

<application android:debuggable="true" >
    <activity
        android:name="com.naver.maps.map.app.LegendActivity"
        android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
        android:label="@string/navermap_legend"
        android:theme="@style/navermap_app" />
    <activity
        android:name="com.naver.maps.map.app.LegalNoticeActivity"
        android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
        android:label="@string/navermap_legal_notice"
        android:theme="@style/navermap_app" />
    <activity
        android:name="com.naver.maps.map.app.OpenSourceLicenseActivity"
        android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
        android:label="@string/navermap_open_source_license"
        android:theme="@style/navermap_app" />
</application>
fornewid commented 4 years ago

아래 코드로 적용 완료.