일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Exception
- CSS사용법
- Kotlin
- html
- spring
- Java
- MySQL
- tomcat
- release unsigned
- Android
- Eclipse
- java error
- fragment
- release Apk
- Android Apk 이름
- android fragment
- Android Apk 이름 변경
- R프로그래밍
- Firebase
- apache gzip
- DataTable
- css
- Android Apk
- android error
- JavaScript
- jQuery
- Program type already present
- 안드로이드
- FLUTTER
- error
- Today
- Total
목록전체 글 (158)
selfstarter
Unable to start service Intent not found Intent intent2 = new Intent(context, MyService.class); intent2.setAction(intent.getAction()); intent2.setPackage(context.getPackageName());
not allowed to perform MOCK_LOCATION 시스템-개발자옵션-모의 위치 앱 선택
Android Apk 이름 변경하기 apk 이름 변경하기(debug, release 둘 다 적용 가능) android { defaultConfig { applicationVariants.all { variant -> variant.outputs.all { output -> def dateStr = new Date().format("yyyyMMdd"); outputFileName = "${dateStr}${defaultConfig.versionCode}${outputFileName}"; } } } }
release apk파일에 unsigned가 apk 이름에 붙어서 생성되다면 서명 정보가 없는 것이다. gradle로 만들면서 서명을 하지 않은 경우이다. 그 땐 build.gradle(:app) 에서 buildTypes 에서 서명 정보를 넣는다. key 정보 android { signingConfigs { release { keyAlias = 'keyAlias' storeFile file('storeFile\\platform.jks') storePassword 'storePassword' keyPassword 'keyPassword' } } } release 파일에 서명 signingConfigs의 release의 설정으로 서명 android { buildTypes { release { minifyEn..
Multiple flavorDimensions https://developer.android.com/studio/build/build-variants.html#flavor-dimensions flavorDimensions 으로 여러 조합을 만들어 낼 수 있음. 아래에는 server가 개발서버인지, 상용서버인지에 따라서 dev, prod로 나누고 api 수준에 따라서 minApi24, minApi23, minApi21 로 나눔 즉 server 버전과 api버전을 각 한개씩 골라서 환경을 구성할 수 있음. 아래 조합으로 나올 수 있는 버전은 다음과 같음 devMinApi21Debug : 개발 서버의 최소 API21 디버그 APK devMinApi21Release : 개발 서버의 최소 API21 릴리즈 APK..
permission denied for window type 2038 다른 앱 위에 표시되는 앱 설정을 키고 앱을 켜줘야 한다
info - Only use double quotes for strings containing single quotes - 쌍따옴표 따옴표로 바꿀 것