전체 글(129)
-
2 안드로이드 스튜디오 와 플러터 연결
1. 안드로이드 스튜디오를 다운로드 후 설치 한다 https://developer.android.com/studio?hl=ko Download Android Studio & App Tools - Android Developers Android Studio provides app builders with an integrated development environment (IDE) optimized for Android apps. Download Android Studio today. developer.android.com 2. 안드로이드 스튜디오 플러그인을 설치 한다. Dart & Flutter를 찾아서 설치 후 Restart IDE를 눌러 안드로이드 스튜오를 재시작 해준다. 3. cmd 창에서 flut..
2022.07.07 -
1 플러터 설치하기
1. 플러터 접속 https://docs.flutter.dev/get-started/install/windows Windows install How to install on Windows. docs.flutter.dev 2. flutter_windows_3.0.4-stable.zip 다운로드 * 참고 아래 경로에 설치하면 안됨 Do not install Flutter in a directory like C:\Program Files\ that requires elevated privileges. 3. 환경변수 설정 시스템환경 변수 편집 -> 환경변수 클릭 -> 시스템 변수 에서 Path클릭 -> 새로 만들기 -> 압축푼 파일 경로 입력 후 확인 ex) D:\flutter_windows_3.0.4-stab..
2022.07.07 -
Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.
java.lang.IllegalArgumentException: com.smg.nao: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies or bubbles. at android.app.PendingIntent...
2022.07.05 -
storeFile 상대경로 지정
상위 파일경로가 변경되어도 현재 디렉토리 위치를 가져와서 파일을 읽어오도록 설정 storeFile new File(System.properties['user.dir'], "파일경로.jks")
2022.07.03 -
Proguard Rule 사용방법
-dontwarn 패키지명.** : 지정해서 경고 무시 -keep class 패키지명.** : 난독화가 필요하지 않은 경우 -ignorewarnings : 경고 무시 -dontoptimize : 최적화 하지 않기 -dontshrink : 사용하지 않는 메소드 유지 -keepclassmembers : 특정 클래스 멤버 원상태 유지 -keepattributes : 내부 클래스 원상태 유지 적용 -keep class org.xmlpull.v1.** { *; } -dontwarn org.ejml.** -dontwarn org.xmlpull.** -dontwarn io.reactivex.** -dontwarn com.squareup.okhttp.** -dontwarn com.thoughtworks.xstream...
2022.07.01 -
Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.
문제발생 * What went wrong: An exception occurred applying plugin request [id: 'com.android.application'] > Failed to apply plugin 'com.android.internal.application'. > Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8. Your current JDK is located in C:\Program Files\Java\jre1.8.0_311 You can try some of the following options: - changing the IDE settings. - changing the..
2022.06.30