Summary: A very basic app with a scrolling list backed by a static data source. It also covers two bases that we hadn't before: Sections and Kotlin; the latter being the better choice for a modern Android tutorial anyway. Missing right now: BUCK support (likely not going to come anytime soon due to the kapt limitations), the actual Flipper plugin integration (that's up next). Reviewed By: jknoxville Differential Revision: D15166195 fbshipit-source-id: 3cfaa1d243548279cabc4f244c13363f1bcaa36c
12 lines
469 B
XML
12 lines
469 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (c) Facebook, Inc. and its affiliates.
|
|
~
|
|
~ This source code is licensed under the MIT license found in the LICENSE file
|
|
~ in the root directory of this source tree.
|
|
-->
|
|
|
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<background android:drawable="@drawable/ic_launcher_background" />
|
|
<foreground android:drawable="@drawable/ic_launcher_foreground" />
|
|
</adaptive-icon> |