목록분류 전체보기 (163)
Simple&Natural
Ad failed to load : 0 public static final int ERROR_CODE_INTERNAL_ERROR Something happened internally; for instance, an invalid response was received from the ad server. Constant Value: 0 Ad failed to load : 1 public static final int ERROR_CODE_INVALID_REQUEST The ad request was invalid; for instance, the ad unit ID was incorrect. Constant Value: 1 Ad failed to load : 2 public static final int E..
shancarter.github.io/mr-data-converter/
구글 애드몹 연동은 기본적으로 공식 문서에 잘 나와있습니다. 하지만 안드로이드를 배운지 얼마 안되시는 분들의 경우 공식문서의 딱딱한 설명이 낯설고 잘 이해가 되지 않는 경우가 많습니다. 여기서는 공식문서를 바탕으로 다소 어려울 수 있는 부분 혹은 실수할 수 있는 부분을 보완하여 앱에 광고를 연동하는 방법을 설명합니다. 시작하기 전 다음과 같은 기본 조건을 만족해야 합니다. Android 스튜디오 3.2 이상 사용 minSdkVersion 16 이상 compileSdkVersion 28 이상 권장사항: Google AdMob 계정을 만들고 앱을 등록합니다. AdMob 계정은 기존에 구글 계정이 있다면 금방 만드실 수 있습니다. 혹시 계정을 만드는 게 귀찮거나 단순 테스트를 원한다면 아래의 Manifest ..
Field Parameter 에 encoded 옵션을 주지 않아서 생기는 문제. 깨지는 값을 url디코더로 찍어보면 원래 값이 잘 복원되어 나옴. @FormUrlEncoded 를 사용한 POST 요청 interface TestApiService { @Headers("content-type: text/plain; charset=utf8") @FormUrlEncoded @POST("/") suspend fun postToLocal( @Field("name") name: String, @Field("age") age: String ): String } 결과 name=%EC%B2%A0%EC%88%98&age=13 수정 후 @Field("name", encoded=true) name: String, @Field(..