블로그 이미지
Kanais
Researcher & Developer 퍼즐을 완성하려면 퍼즐 조각들을 하나 둘씩 맞춰나가야 한다. 인생의 퍼즐 조각들을 하나 둘씩 맞춰나가다 보면 인생이란 퍼즐도 완성되는 날이 오려나...?

calendar

1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30

Notice

2015. 11. 25. 18:00 Programming/Error Clear!

운영체제 : Windows 8.1 64bit

Android Studio Version : 2.2.2

작성날짜 : 2015-11-25


출처 : http://mrkimyeonjung.tistory.com/2






//이 코드를
<manifest
xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
//이렇게 수정한다.
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
tools:replace="theme, icon, label"
android:icon="@drawable/icon"
android:label="@string/app_name">


posted by Kanais