android - Rendering Problems: The following classes could not be instantiated. Answers to other questions haven't helped. -
i'm doing android developer tutorial using android studio 1.5.1 , when trying view code in content_main.xml
i encounter following message: rendering problems
here build.gradle: apply plugin: 'com.android.application'
android { compilesdkversion 23 buildtoolsversion "23.0.2"
defaultconfig { applicationid "cashcow.sunshine.app" minsdkversion 10 targetsdkversion 23 versioncode 1 versionname "1.0" } buildtypes { release { minifyenabled false proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile filetree(dir: 'libs', include: ['*.jar']) testcompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:design:23.1.1' } i've seen similar questions haven't found clear answer applies error have encountered.
Comments
Post a Comment