java - Android app:dex:Debug error - cannot seem to solve -


please see link attached exact error.

can run other android projects, 1 trying run refuses work:

https://gyazo.com/bc05c903dddc7dd3b79f9979d6bc42aa

build.gradle

buildscript { repositories {     jcenter() } dependencies {     classpath 'com.android.tools.build:gradle:1.3.0'      // note: not place application dependencies here; belong     // in individual module build.gradle files } }  allprojects { repositories {     jcenter() } } 

build.gradle (app)

apply plugin: 'com.android.application'

android { compilesdkversion 23 buildtoolsversion '23.0.1'

defaultconfig {     applicationid "com.tapthatstudios.fingersoffury"     minsdkversion 21     targetsdkversion 23     versioncode 1     versionname "1.0"  } buildtypes {     release {         minifyenabled false         proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'     } }   }  dependencies { compile 'com.android.support:support-v4:23.0.0' compile filetree(include: ['*.jar'], dir: 'libs') } 


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -