2020. 8. 7. 23:00 ANDROID IOS
구글 플레이스토어 앱 배포 거절, Action Required: Your app is not compliant with Google Play Policies

간만에 앱을 올렷는데 거절먹었습니다.
번역기를 돌려봤더니 라벨이 없는 광고버튼때문이라네요.
외쿡인의 눈에는 카카오맵이랑 네이버지도가 광고버튼으로 보였나봅니다.

 

여러분들도 주의하세요.
라벨이 없는 버튼이 외부앱으로 연결되면 거절당할 수 있습니다.

 

라벨이 없는 광고

 

Issue with your app Your app contains content that doesn't comply with the Deceptive Ads policy.

For example, we don’t allow: Ads that aren’t clearly labeled Issue details We found an issue in the following area(s): In-app experience: Please see attached screenshot 461.png Reasons of violation About the Deceptive Ads policy We don’t allow apps that contain deceptive or disruptive ads.

Publishing Status App status: Rejected Your app has been rejected and wasn't published due to this policy issue.

If you submitted an update, the previous version of your app is still available on Google Play.

 

앱 문제
앱에 사기성 광고 정책을 준수하지 않는 콘텐츠가 포함되어 있습니다. 예를 들어 다음은 허용되지 않습니다.
라벨이 명확하지 않은 광고
문제 세부 정보

다음 영역에서 문제를 발견했습니다.
인앱 경험 : 첨부 된 스크린 샷 461.png 참조
위반 이유
사기성 광고 정책 정보
기만적이거나 파괴적인 광고가 포함 된 앱은 허용되지 않습니다.
게시 상태
앱 상태 : 거부 됨
이 정책 문제로 인해 앱이 거부되었으며 게시되지 않았습니다. 업데이트를 제출 한 경우 Google Play에서 이전 버전의 앱을 계속 사용할 수 있습니다.

 

지도아이콘을 눌렀을때 앱이 없으면 설치페이지로 갑니다.

 

2019. 2. 10. 00:43 WINDOWS
[GOOGLE/WINDOWS10] 윈도우10 구글 어스 설치 제거

구글어스 깔아서 한번 보고 자리만 차지해서 지워버리기로 결심했습니다.


1. 시작 > 설정 >> Windows 설정 > 앱 (설치 제거, 기본값, 옵션 기능)



2. 앱 및 기능 > Google Earth Pro > 제거

2018. 11. 1. 12:49 WINDOWS
[CHROME/GOOGLE] 구글 크롬의 임시 인터넷 파일 경로, 캐시파일 확인하기

1. 크롬 임시 인터넷 파일 저장 위치

C:\Users\사용자명\AppData\Local\Google\Chrome\User Data\Default\Cache



2. 크롬 사용자 파일 저장 위치

C:\Users\사용자명\AppData\Local\Google\Chrome\User Data



돌아다니면서 캐시로 저장된 파일은 Default\Cache안에 있습니다.

하지만 막상 파일을 살펴보면 원래파일명은 온데간데,,,

캐시된 파일들은 일련번호로 되어있기때문에 이 파일이 어떤 파일이였는지 알수가 없습니다.


캐시 디렉토리를 이미지뷰어로 들어가보면 처리가 가능한 이미지파일등은 알아서 이미지로 표시해줍니다.


사용자 명을 모를경우에는 탐색기로 C:\Users로 이동하면, 본인의 사용자가 무엇인지 알 수 있습니다.

2014. 5. 19. 10:57 WINDOWS
[IE/CHROME] 인터넷 익스플로러, 크롬에서 쿠키 삭제, DELETE COOKIE BROWSER

브라우저에서 쿠키를 삭제하면

다시 보지 않음 등 팝업창을 닫았을때와 같은 경우들을 리셋할 수 있습니다.





1. 인터넷 익스플로러에서 쿠키 삭제


메뉴 > 도구 > 인터넷 옵션

검색 기록 > 삭제

쿠키 만 체크

'삭제' 버튼 클릭







2. 크롬에서 쿠키 삭제


메뉴 > 설정 > 방문기록 > 인터넷 사용정보 삭제

다음 항목 삭제 : 전체

쿠키 및 기타 사이트/플러그인 데이터만 체크

'인터넷 사용정보 삭제' 버튼 클릭



2014. 4. 30. 21:33 PROGRAMMING
[GOOGLE/API] 구글 API 지도 클릭, 주소 알아내기





<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<div id="map" style="width:730px; height:500px;"><br /></div>
<script type="text/javascript">
<!--
	var map = new google.maps.Map(document.getElementById("map"), {
		zoom: 12,
		center: new google.maps.LatLng(37.564615,126.98420299999998),
		mapTypeId: google.maps.MapTypeId.ROADMAP
	});
	google.maps.event.addListener(map, 'click', function(mouseEvent) {
		getAddress(mouseEvent.latLng);
	});

	function getAddress(latlng) {
		var geocoder = new google.maps.Geocoder();
		geocoder.geocode({
			latLng: latlng
		}, function(results, status) {
			if (status == google.maps.GeocoderStatus.OK) {
				if (results[0].geometry) {
					var address = results[0].formatted_address.replace(/^日本, /, '');
					new google.maps.InfoWindow({
						content: address + "<br />(Lat, Lng) = " + latlng
					}).open(map, new google.maps.Marker({
						position: latlng,
						map: map
					}));
				}
			} else if (status == google.maps.GeocoderStatus.ERROR) {
				alert("ERROR");
			} else if (status == google.maps.GeocoderStatus.INVALID_REQUEST) {
				alert("INVALID_REQUEST");
			} else if (status == google.maps.GeocoderStatus.OVER_QUERY_LIMIT) {
				alert("OVER_QUERY_LIMIT");
			} else if (status == google.maps.GeocoderStatus.REQUEST_DENIED) {
				alert("REQUEST_DENIED");
			} else if (status == google.maps.GeocoderStatus.UNKNOWN_ERROR) {
				alert("UNKNOWN_ERROR");
			} else if (status == google.maps.GeocoderStatus.ZERO_RESULTS) {
				alert("ZERO_RESULTS");
			} else {
				alert(status);
			}
		});
	}
//-->
</script>
2014. 1. 21. 20:06 GAME
구글 검색엔진의 숨겨진 기능, 알카노이드 게임, Atari Breakout

구글에 게임이 있어요.

게임이 하고싶은데 게임이 없으면, 인터넷만 있으면 ㅇㅋ


게임 바로가기

https://www.google.co.kr/search?q=atari+breakout&num=50&newwindow=1&safe=off&hl=ko&site=webhp&source=lnms&tbm=isch&sa=X&ei=Y1LeUt7PJ-WZiQfYh4Aw&ved=0CAkQ_AUoAQ&biw=994&bih=923#imgdii=_


제 점수는요~

http://g.co/doodle/uk3vrq





1. google.com에 접속해서 atari breakout이라고 검색합니다.



2. 검색 결과에서 이미지를 클릭하세요.



3. 결과 이미지들이 움직이면서 바로 게임이 시작됩니다.



4. 잠시 멈추니까 구글플러스 공유페이지가 나타납니다.


2012. 12. 28. 10:06 COMPUTER
[GOOGLE/ADSENSE] 구글 애드센스 블로그 광고 수익 수표 지급

구글 애드센스 광고 수익 수표 지급

 

집계는 익월 7일

정산은 매월 19일

지급은 매월 21일

 

2012. 10. 5. 14:12 ETC
구글 애드센스 광고 백업
<script type="text/javascript"><!--
google_ad_client = "ca-pub-5585342941485872";
/* 애드센스 게시물 상단 이미지 */
google_ad_slot = "2273398697";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>


<script type="text/javascript"><!--
google_ad_client = "ca-pub-5585342941485872";
/* 애드센스 게시물 상단 텍스트 */
google_ad_slot = "3741233278";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>


<script type="text/javascript"><!--
google_ad_client = "ca-pub-5585342941485872";
/* 애드센스 게시물 하단 배너 */
google_ad_slot = "9373964504";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>



<div style="text-align:left;margin:0 0 10px 0">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-5585342941485872";
/* 애드센스 게시물 하단 배너 */
google_ad_slot = "9373964504";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>


<div style="position:absolute;margin:-5px 0 0 607px;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-5585342941485872";
/* 애드센스 게시물 작은텍스트 */
google_ad_slot = "5068968211";
google_ad_width = 120;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>


<div style="text-align:center;padding:10px 0 10px 0">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-5585342941485872";
/* 애드센스 하단 */
google_ad_slot = "2304095304";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>

2012. 9. 5. 17:41 PROGRAMMING
[CHROME/JS] 크롬 익스텐션 사용자 변수 저장/로드 샘플 예제

크롬 익스텐션 개발시 사용자 변수를 저장하거나 로드하는 예제 입니다.

 

익스텐션 특성상 사용자가 입력한값을 저장해놨다가

다시 꺼내서 불러내어놔야 할 경우가 많이 있습니다.

 

나름 쿠키를 사용해도 별 문제는 없지만,

크롬에서는 localStorage라는 저장소가 있습니다.

 

 

저장하기 [SAVE]

localStorage["변수명"]=값; (popup.html 8줄)

 

불러오기 [LOAD]

var 변수=localStorage["변수명"]; (popup.html 15줄)

 

 

샘플 프로젝트(?)

 

1. 익스텐션에서 사용할 디렉토리를 만듭니다.

 

2. manifest.json 작성

{
	"name": "kaudo chrome extension sample",
	"version": "1.0",
	"description": "blog.nachal.com",
	"browser_action": {
		"popup": "popup.html"
	},
	"permissions": [
	],
	"background": {
	}
}

 

3. popup.html 작성

<html>
<style>
textarea{width:300px;height:50px}
input{width:300px}
</style>
<script type="text/javascript">
var update=function(str){
	localStorage["source"]=str;
	result.value=str.toLowerCase().replace(/(\_[a-z])/g, function($1){
		return $1.toUpperCase().replace('_','');
	});
}

var load=function(){
	if(localStorage['source']) source.value=localStorage['source'];
	update(source.value);
}
</script>
<body onload="load()">
<textarea id="source" onkeyup="update(this.value)" onfocus="update(this.value)" onblur="update(this.value)">
AHNDOORI DOORI AHN
</textarea><br/>
<textarea id="result"></textarea>
</body>
</html>

 

 

 

2010. 2. 9. 17:20 ANDROID IOS
안드로이드 헬로월드 Android HelloWorld

나으 첫 작품;;



재료 - 이클립스, 안드로이드 SDK, 자바 SDK
http://www.eclipse.org/downloads/ Eclipse IDE for Java Developers 최신버전 Eclipse Galileo SR1
http://java.sun.com/javase/downloads/index.jsp JDK 최신버전 JDK 6 Updae 18
http://developer.android.com/sdk/ Android SDK R04

설명은 안드로이드 SDK다운로드 하단에 자세히 설명되어있다 (ㅅㅂ영문)

2009. 7. 14. 18:20 WINDOWS
구글 인터넷 익스플로러 검색 공급자에 추가
전체 웹문서
http://www.google.com/search?q=TEST

한국어 웹
http://www.google.com/search?q=TEST&lr=lang_ko

최근에 올라온 글

최근에 달린 댓글