며칠전 안드로이드 스튜디오 업데이트 하고 나서부터 Design 뷰에 preview 가 먹지를 않는군요.
아래는 gradle 정보입니다. 고수님들 봐주시면 감사하겠습니다.
====================================================
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '26.0.2'
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId ""
minSdkVersion 19
targetSdkVersion 22
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildscript {
repositories {
jcenter()
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile fileTree(dir: 'libs', include: ['*.jar'])
compile group: 'com.kakao.sdk', name: 'usermgmt', version: project.KAKAO_SDK_VERSION
compile 'com.android.support:design:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.github.nkzawa:socket.io-client:0.3.0'
compile 'com.github.bumptech.glide:glide:3.6.0'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
compile 'com.squareup.retrofit2:converter-scalars:2.3.0'
compile 'com.squareup.okhttp3:okhttp:3.4.2'
compile 'com.squareup.okhttp3:okhttp-urlconnection:3.0.1'
compile 'com.squareup.okhttp3:logging-interceptor:3.4.2'
compile 'com.scottyab:aescrypt:0.0.1'
compile 'dev.dworks.libs:volleyplus:+'
compile 'com.google.android.gms:play-services-maps:11.0.4'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.google.android.gms:play-services-location:10.2.1'
compile 'com.google.maps.android:android-maps-utils:0.5'
compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.+'
testCompile 'junit:junit:4.12'
}