Api/Google api

    java에서 gson

    serializing and deserializing JSON data to Java objects and vice-versa.-jackson 도있다 . Array ExamplesGson gson = new Gson(); int[] ints = {1, 2, 3, 4, 5}; String[] strings = {"abc", "def", "ghi"}; // Serialization gson.toJson(ints); // ==> [1,2,3,4,5] gson.toJson(strings); // ==> ["abc", "def", "ghi"] // Deserialization int[] ints2 = gson.fromJson("[1,2,3,4,5]", int[].class); // ==> ints2 will be..

    com.google.android.gms.common.api.ApiException: 12500

    구글 로그인-파이어베이스 연동을할려면 shsa-1 키를 발급받아야한다.근데 추가시 json파일이 변하는데 이걸 다시다운받아서 집어넣어야한다.

    Google Maps Android Api

    Google Maps Android Api

    수정사항 implementation 'com.google.android.gms:play-services-location:16.0.0' implementation 'com.google.android.gms:play-services-location:16.0.0' 로 변화되었음 https://webnautes.tistory.com/647 ------------------------------------------- Google Maps Android API를 사용하는 기본적인 방법과 사용시 발생할 수 있는 문제점에 대해 다룹니다. 1. 간단한 안드로이드 구글맵 예제 동작시키기 2. Google Maps Android API 예제 코드 설명 3. Google Maps Android API를 사용할 때 발생할 수..