1

Getting error while running project with target v 22. I can not change target version.

Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available

gradle file - build.gradle file :

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId "com.adsl.beaconapp"
        minSdkVersion 19
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
IntelliJ Amiya
  • 74,896
  • 15
  • 165
  • 198
Paddy02
  • 71
  • 2
  • 11

1 Answers1

0

Try deleting the build folder and then clean the project

Sachin Gawai
  • 351
  • 1
  • 4
  • 15