본문 바로가기
728x90

Programing/Android / Java195

[GCP] Google Cloud Platform 시작하기 1. Link 접속 http://cloud.google.com 클라우드 컴퓨팅 서비스 | Google Cloud Google Cloud를 통해 비즈니스를 혁신하세요. Google Cloud Platform으로 빌드하고 혁신하고 확장하세요. G Suite로 공동작업하고 생산성을 높이세요. cloud.google.com 2. 무료로 시작하기 3. 가격 정보 입력 및 신용카드 정보 입력 ($300 크레딧을 제공해주고, 동이 없이는 신용카드 청구되지 않는다고 명시되어 있습니다. 자동 가입 방지를 위한 시스템이라고 설명이 되어 있네요. ) 4. 원하시는 시스템 신청 예시 - Google Map Solution / Google Map API 1. Link 접속 https://cloud.google.com/maps-.. 2019. 8. 23.
[Android] What to use instead of getResources().getColor() because this is now deprecated? GetColor Method int getColor (Context mContext, int id) Returns a color connected with a particular resource ID. [From] dialog.getButton(AlertDialog.BUTTON_NEGATIVE).setTextColor(getResource().getColor(android.R.color.white)); dialog.getButton(AlertDialog.BUTTON_POSITIVE).setTextColor(getResource().getColor(android.R.color.white)); [To] dialog.getButton(AlertDialog.BUTTON_NEGATIVE).setTextColor(.. 2019. 8. 7.
[Android] How to add MENU in fragment ? Step 1: Make a xml of menu which you want to add like I have to add a filter action on my action bar so I have created a xml filter.xml. The main line to notice is android:orderInCategory this will show the action icon at first or last wherever you want to show. One more thing to note down is the value, if the value is less then it will show at first and if value is greater then it will show at .. 2019. 8. 7.
Android Q에 포함된 기능동작 변경사항 vMMS Lib 3.0 버전 검증을 위해 진행한 Android Q 실 구동 화면 - 전반적으로 사각 UI가 두드러진다. (Alert Dialog 등) - 좀 더 자세히 권한 설정 내용을 보여 준다. - 공유 기능이 포함 되었다 (WiFi 등) - 다크모드가 추가 되었다. 2019. 8. 5.
[Android] Android Asset Studio Launcher icon generator Generate launcher and store listing icons for your app. App shortcut icon generator Generate app launcher shortcut icons (Android 7.1+). Shape Shifter Create vector drawables and vector icon animations. Notification icon generator Generate notification icons for your app. These show up in the system status bar and notification shade. Simple nine-patch generator Generate n.. 2019. 5. 22.
[Android 9-patch] Android Asset Studio https://romannurik.github.io/AndroidAssetStudio/nine-patches.html#&sourceDensity=320&name=example Android Asset Studio - Simple nine-patch generator Drag or select a source graphic to get started. romannurik.github.io 2019. 5. 22.
[Android][Proguard] square-okio proguard # Okio -keep class sun.misc.Unsafe { *; } -dontwarn java.nio.file.* -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement -dontwarn okio.** 2019. 5. 5.
[Android][Proguard] square-okhttp proguard # OkHttp -keepattributes Signature -keepattributes *Annotation* -keep class com.squareup.okhttp.** { *; } -keep interface com.squareup.okhttp.** { *; } -dontwarn com.squareup.okhttp.** 2019. 5. 5.
[Android][Proguard] sqlite proguard -keep class org.sqlite.** { *; } -keep class org.sqlite.database.** { *; } -keep class net.sqlcipher.** { *; } -dontwarn net.sqlcipher.** 2019. 5. 5.
[Android][Proguard] retrofit proguard -dontwarn retrofit.** -keep class retrofit.** { *; } -keepattributes Signature -keepattributes Exceptions 2019. 5. 5.
[Android][Proguard] okhttp proguard -dontwarn okio.** -dontwarn javax.annotation.Nullable -dontwarn javax.annotation.ParametersAreNonnullByDefault 2019. 5. 5.
[Android][Proguard] firebase-messaging proguard -dontwarn com.google.firebase.analytics.connector.AnalyticsConnector 2019. 5. 5.
728x90