728x90 Programing391 [Android Studio] Open project in new window / 안드로이드 스튜디오 여러 프로젝트 창 띄우기 1. Settings 2. Default Settings > Appearance & Behavior > System Settings > Project Opening Open project in new window : 프로젝트를 새 창에서 열기 Open project in the same window : 같은 창에서 프로젝트 열기 Confirm window to open project in : 프로젝트 열고 확인하기 2017. 11. 1. [안드로이드] Android Studio 실행시 프로젝트 선택할 수 있도록 변경하기 (Reopen last project on startup) Reopen last project on startup 해제하기 File > Settings... > Appearance & Behavior > System Settings > Uncheck "Reopen last project on startup" 2017. 10. 30. [Android] Bitmap Resize by size [Example] 12345 Bitmap bitmap = null; Bitmap resizeBitmap = null; try { bitmap = MediaStore.Images.Media.getBitmap(MainActivity.this.getContentResolver(), uri); resizeBitmap = Utils.resizeBitmapImageFn(bitmap, 600);Colored by Color Scriptercs [API]1234567891011121314151617181920212223242526 public static Bitmap resizeBitmapImageFn(Bitmap bmpSource, int maxResolution) { int iWidth = bmpSource.get.. 2017. 10. 30. [Android] uCrop을 활용한 vImageSelector 라이브러리 UI로 인해 많은 선택을 받는 uCrop Library를 활용한 Bottom Image Picker를 만들어 봤습니다. https://github.com/Yalantis/uCrop 아직 소스 안정화가 안되어 공유하지는 않지만, 추후 공유할지 고민 중에 있습니다. 기능은 간단합니다. 하나 또는 다중 이미지 선택이 가능하며, BottomSheetDialogFragment를 사용하여 개발되었습니다. 최신 순으로 불러들인 이미지를 선택해도 되고, 카메라나 갤러리를 통해서도 선택이 가능합니다. 이미지를 선택하면 자르기가 가능하며, 이는 uCrop을 적용했습니다. [데모 화면] [싱글 이미지 선택] [다중 이미지 선택] 2017. 10. 30. [Android] INSTALL_PARSE_FAILED_NO_CERTIFICATES 설치하고자 하는 앱에 서명이 되어있지 않기 때문에 발생하는 문제입니다. 아래와 같이 앱 서명을 진행하시면 됩니다. 1. Build > Generate Signed APK... 2. If you don't have a key store, you need to create via "Create new..". If you already had it, you need to choose it via "Choose existing..". And then, you need to input Key store password / Select Key alias / Input Key password. 3. Select APK Destination Folder > Build Type : release > Check V1 an.. 2017. 10. 23. [Error] Corona SDK - Google traversal vulnerability in a ContentProvider [Real Case] [Error Case] [How to fix?] 1. Download APKTool https://ibotpeaches.github.io/Apktool/ 2. Install APKTool https://ibotpeaches.github.io/Apktool/install/ 3. Preparing your APK on specific folder 4. Open CMD (Win+R > cmd > OK) 5. Move the path to specific folder you had created 6. Decompile APK # apktool d "APK Name" 7. Fix the vulnerability Open file "AndroidManifest.xml" with your favorite progra.. 2017. 10. 13. [Error] Corona SDK - Google traversal vulnerability in a ContentProvider [Google Notification] What’s happening? Starting January 16th, 2018, Google Play will block publishing of any new apps or updates that contain this path traversal vulnerability. Your published APK version will remain unaffected, but any updates to the app will be blocked if the vulnerability is present. Action required. There are two recommended strategies for eliminating a path traversal vulner.. 2017. 10. 13. npm modules 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다 [Error Message][npm modules] 은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다 [Solution]1. Win+R, cmd2. npm install 2017. 10. 12. How to install npm and nodejs? / npm 설치 / nodejs 설치 https://www.npmjs.com/get-npm?utm_source=house&utm_medium=homepage&utm_campaign=free%20orgs&utm_term=Install%20npm What is npm?npm makes it easy for JavaScript developers to share and reuse code, and makes it easy to update the code that you’re sharing, so you can build amazing things. Install npmnpm is installed with Node.jsnpm is distributed with Node.js- which means that when you download Nod.. 2017. 10. 12. [Android 개발 어플] MMS 직접 전송방식 (Intent 이용하는 방식 아님) - Victor MMS Sender Version 1.6 [Version History]Version 3.0.0 - https://victor8481.tistory.com/824Version 2.0.3 - https://victor8481.tistory.com/notice/767Version 2.0.2 - http://victor8481.tistory.com/719Version 2.0.0 - http://victor8481.tistory.com/716Version 1.6.0 - http://victor8481.tistory.com/677Version 1.5.1 - http://victor8481.tistory.com/671Version 1.5.0 - http://victor8481.tistory.com/643Version 1.4.0 - http://victor.. 2017. 8. 31. Android Studio export jar with dependencies / 안드로이드 스튜디오 JAR 생성 아래 코드로 일반적으로 JAR File을 생성하려고 한다.하지만, 이 코드가 적용이 안되는 경우가 매우 빈번하다.task clearJar(type: Delete) { delete 'build/libs/mysdk.jar' } task makeJar(type: Copy) { from('build/intermediates/bundles/release/') into('release/') include('classes.jar') rename ('classes.jar', 'mysdk.jar') } makeJar.dependsOn(clearJar, build) 또는, 생성은 되나 Dependency 내용이 누락되어 있다. 때문에, 이러한 경우 아래 내용을 참고 하시길 바란다. android.libraryVariant.. 2017. 8. 11. [Android 개발 어플] MMS 직접 전송방식 (Intent 이용하는 방식 아님) - Victor MMS Sender Version 1.5.1 [Version History]Version 3.0.0 - https://victor8481.tistory.com/824Version 2.0.3 - https://victor8481.tistory.com/notice/767Version 2.0.2 - http://victor8481.tistory.com/719Version 2.0.0 - http://victor8481.tistory.com/716Version 1.6.0 - http://victor8481.tistory.com/677Version 1.5.1 - http://victor8481.tistory.com/671Version 1.5.0 - http://victor8481.tistory.com/643Version 1.4.0 - http://victor.. 2017. 7. 27. 이전 1 ··· 4 5 6 7 8 9 10 ··· 33 다음 more 728x90