취미 기록용 블로그
Error:Execution failed for task ‘:app:transformResourcesWithMergeJavaResForDebug’. > com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK META-INF/rxjava.properties File1: ….\.android\build-cache\f9a49eee6c6f91f00642b498fcfee1913d317614\output\jars\classes.jar File2: ….\dJISDKLIB\build\intermediates\bundles\default\classes.jar 이것저것 lib 넣어서 빌드 하다 보니 저런 에러 뜨면서 빌드가 안되는 문제가 생김. 패키징 하다 보면 이 lib에 있는 파일이 저 lib… “read more”
블로그 서버에 남는 용량을 뭐에 써볼까 고민하다가 웹하드에 다시 도전해봤습니다. 이전에 Pydio를 가지고 삽질하다가 대용량 파일 문제로 포기했었는데 (Pydio 부스터 설치 실패기) 이번엔 다른 설치형 웹하드로 시도해봤습니다. Seafile이라는 설치형 웹하드인데 별다른 세팅없이 대용량 파일이 그냥 업로드 됩니다. (5기가 단일파일 까지… “read more”
싱글톤 패턴으로 공통 데이터영역이라던지 메소드를 만들어 사용하곤 했었는데 안드로이드 자바 프로그래밍에서는 이런 기능을 해주는 클래스가 있다. 바로 Application 클래스인데 사용법은 아래와 같다. public class MyApplication extends Application{ public byte[] g_pTempBuffer = null; @Override public void onCreate(){ super.onCreate(); Log.d(“linsoo”, “MyApplication onCreate”);… “read more”
Error:(195) Error: “dji_check_air_encoder_upgrade_reason” is not translated in “zh-CN” (Chinese: China) [MissingTranslation] Error:(196) Error: “dji_check_air_encoder_upgrade_solution” is not translated in “zh-CN” (Chinese: China) [MissingTranslation] DJI 드론 라이브러리를 사용해서 빌드를 하다 보니 위와 에러메세지가 발생. DJI측 라이브러리 리소스에 중국어 스트링이 있는데 이걸 나라별로… “read more”