<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Unnamed Laboratory</title>
	<atom:link href="http://5frame.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://5frame.wordpress.com</link>
	<description>살며, 생각하며, 실험하며.</description>
	<lastBuildDate>Sun, 22 Jan 2012 13:57:54 +0000</lastBuildDate>
	<language>ko</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='5frame.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Unnamed Laboratory</title>
		<link>http://5frame.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://5frame.wordpress.com/osd.xml" title="Unnamed Laboratory" />
	<atom:link rel='hub' href='http://5frame.wordpress.com/?pushpress=hub'/>
		<item>
		<title>내가 만든 안드로이드 소프트웨어가 멋대로 WRITE_EXTERNAL_STORAGE와 READ_PHONE_STATE 권한을 요구하는 경우</title>
		<link>http://5frame.wordpress.com/2012/01/22/%eb%82%b4%ea%b0%80-%eb%a7%8c%eb%93%a0-%ec%95%88%eb%93%9c%eb%a1%9c%ec%9d%b4%eb%93%9c-%ec%86%8c%ed%94%84%ed%8a%b8%ec%9b%a8%ec%96%b4%ea%b0%80-%eb%a9%8b%eb%8c%80%eb%a1%9c-write_external_storage%ec%99%80-r/</link>
		<comments>http://5frame.wordpress.com/2012/01/22/%eb%82%b4%ea%b0%80-%eb%a7%8c%eb%93%a0-%ec%95%88%eb%93%9c%eb%a1%9c%ec%9d%b4%eb%93%9c-%ec%86%8c%ed%94%84%ed%8a%b8%ec%9b%a8%ec%96%b4%ea%b0%80-%eb%a9%8b%eb%8c%80%eb%a1%9c-write_external_storage%ec%99%80-r/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 13:52:47 +0000</pubDate>
		<dc:creator>5frame</dc:creator>
				<category><![CDATA[컴퓨터]]></category>

		<guid isPermaLink="false">http://5frame.wordpress.com/?p=332</guid>
		<description><![CDATA[Stack Overflow: Android permissions: Phone Calls: read phone state and identity 안드로이드용 소프트웨어를 만들어 설치할 때 소프트웨어가 AndroidManifest.xml 안에 정해 주지도 않은 권한을 요구하는 경우가 있다. WRITE_EXTERNAL_STORAGE(외부 저장소에 무언가를 기록할 권한)와 READ_PHONE_STATE(전화 상태 읽기)가 그것. 위 링크를 따라가 보면 이 두 권한은 최소 API 레벨을 4(1.6 대응) 미만으로 하는 경우 AndroidManifest.xml 안에 정해 주지 않아도 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5frame.wordpress.com&amp;blog=8627731&amp;post=332&amp;subd=5frame&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://stackoverflow.com/">Stack Overflow</a>: <a href="http://stackoverflow.com/questions/1747178/android-permissions-phone-calls-read-phone-state-and-identity">Android permissions: Phone Calls: read phone state and identity</a></p>
<p>안드로이드용 소프트웨어를 만들어 설치할 때 소프트웨어가 AndroidManifest.xml 안에 정해 주지도 않은 권한을 요구하는 경우가 있다. WRITE_EXTERNAL_STORAGE(외부 저장소에 무언가를 기록할 권한)와 READ_PHONE_STATE(전화 상태 읽기)가 그것. 위 링크를 따라가 보면 이 두 권한은 최소 API 레벨을 4(1.6 대응) 미만으로 하는 경우 AndroidManifest.xml 안에 정해 주지 않아도 빌드할 때 자동으로 포함되게 되어 있음을 알 수 있다.</p>
<p>따라서, 어차피 쓸 권한들이라면 상관없겠지만 그렇지 않아서 없애려면 소스 패키지의 AndroidManifest.xml 안에 다음 설정을 넣어 주어야 한다.</p>
<p>&#060;uses-sdk android:minSdkVersion=&#8221;4&#8243; /&gt;</p>
<p>지원 대상에 따라 4보다 높은 숫자를 넣어도 된다.</p>
<br />Filed under: <a href='http://5frame.wordpress.com/category/%ec%bb%b4%ed%93%a8%ed%84%b0/'>컴퓨터</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5frame.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5frame.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5frame.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5frame.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5frame.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5frame.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5frame.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5frame.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5frame.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5frame.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5frame.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5frame.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5frame.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5frame.wordpress.com/332/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5frame.wordpress.com&amp;blog=8627731&amp;post=332&amp;subd=5frame&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5frame.wordpress.com/2012/01/22/%eb%82%b4%ea%b0%80-%eb%a7%8c%eb%93%a0-%ec%95%88%eb%93%9c%eb%a1%9c%ec%9d%b4%eb%93%9c-%ec%86%8c%ed%94%84%ed%8a%b8%ec%9b%a8%ec%96%b4%ea%b0%80-%eb%a9%8b%eb%8c%80%eb%a1%9c-write_external_storage%ec%99%80-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/618bdbc55e09d4a4cd3c74b48745f3b4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">5frame</media:title>
		</media:content>
	</item>
	</channel>
</rss>
