Platform/Android
[AndroidManifest.xml] tools: attributes
개랭갱깽스타
2022. 2. 15. 14:57
xmlns:tools="http://schemas.android.com/tools"
tools:ignore
무시하고 넘어갈 워닝을 정의한다.
<!-- architecture-samples.git > todo-mvvm-live > AndroidManifest.xml 중 -->
<activity
android:name="com.example.android.architecture.blueprints.todoapp.statistics.StatisticsActivity"
android:parentActivityName=".tasks.TasksActivity"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute" <!-- 사용하지 않는 설정들에 대한 워닝을 무시한다. -->
.참고
https://gun0912.tistory.com/73
반응형