분류 전체보기(82)
-
안드로이드 스튜디오 에서 디버그 키스토어 SHA1 알아 내기
android studio keystore get SHA1 스튜디오 오른쪽에 그래들 선택 Tasks -> android -> signingReport 더블클릭 -> 밑의 RUN 에서 확인!
2016.04.01 -
안드로이드 6.0 버전으로 오면서 Apache http를 지원하지 않음 ..... org.apache.http does not exist
스튜디오 쓰다보면 아파치 jar 포함해도안되고.... 기본으로도 아파치 없다고 하고.. 그럼... 해결방법 import org.apache.http.client.HttpClient; 해결방법 app 내에 build.gradle 파일을 열자======================================================================================apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { applicationId "패키지명" minSdkVersion 11 targetSdkVersion 23 version..
2016.03.04 -
투명도
100% — FF 95% — F2 90% — E6 85% — D9 80% — CC 75% — BF 70% — B3 65% — A6 60% — 99 55% — 8C 50% — 80 45% — 73 40% — 66 35% — 59 30% — 4D 25% — 40 20% — 33 15% — 26 10% — 1A 5% — 0D 0% — 00퍼센트낮을수록 투명해짐
2016.02.25 -
테마 스타일 문제! [Stryle.xml] android:Theme.Holo.Light requires API level 11 (current min is 8)
android:Theme.Holo.Light requires API level 11 (current min is 8) Mainfest.xml Style.xmlx 문제................. 해결은.. 골뱅이 추가
2015.06.20 -
이클립스 가장처음 할것 android adt 설치
http://dkatlf900.tistory.com/36
2015.06.15 -
android studio ndk
빨간부분 추가, 프로젝트 내에 app-> build.gradle 파일 열고 apply plugin: 'com.android.application' import org.apache.tools.ant.taskdefs.condition.Os def getNdkBuildPath() { Properties properties = new Properties() properties.load(project.rootProject.file('local.properties').newDataInputStream()) def command = properties.getProperty('ndk.dir') if (Os.isFamily(Os.FAMILY_WINDOWS)) { command += "\\ndk-build.cmd" } e..
2015.05.29