2016-11-18 102 views
1

我創建了一個新項目並且沒有任何更改就運行了它。 但該項目沒有運行,你好世界的應用程序正在拋出'轉換期望'。Android Studio 2.2.2不運行新項目

事情我想:

  1. multidex啓用: - 同樣的錯誤
  2. 塞米鬆選項maxheapsize4克:同樣的錯誤
  3. 包裝選項排除: - 同樣的錯誤

代碼:

apply plugin: 'com.android.application' 
 

 
android { 
 
    compileSdkVersion 25 
 
    buildToolsVersion "23.0.3" 
 
    defaultConfig { 
 
     applicationId "com.blood_bank" 
 
     minSdkVersion 15 
 
     targetSdkVersion 25 
 
     versionCode 1 
 
     versionName "1.0" 
 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
 
     
 
    } 
 
    buildTypes { 
 
     release { 
 
      minifyEnabled false 
 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
 
     } 
 
    } 
 
    
 
} 
 

 
dependencies { 
 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
 
     exclude group: 'com.android.support', module: 'support-annotations' 
 
    }) 
 
    compile 'com.android.support:appcompat-v7:25.0.1' 
 
    testCompile 'junit:junit:4.12' 
 
}
Information:Gradle tasks [:app:clean, :app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies, :app:assembleDebug] 
 
Error:Execution failed for task ':app:transformClassesWithDexForDebug'. 
 
> com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: No dex files created at C:\Users\arcgis\AndroidStudioProjects\MyApplication\app\build\intermediates\transforms\dex\debug\folders\1000\5\slice_9 
 
Information:BUILD FAILED 
 
Information:Total time: 27.813 secs 
 
Information:1 error 
 
Information:0 warnings 
 
Information:See complete output in console

+4

禁用即時運行,之後再試。 –

+1

您拯救了我的一天@JinalPatel ....感謝很多完美的回答 –

+1

如果您必須禁用某項功能,那麼這幾乎是完美的。治療潛在的疾病不是一個症狀。我會從'buildToolsVersion「25.0.0」'開始。 –

回答

0

刪除此行:

testCompile 'junit:junit:4.12' 
+0

已嘗試不成功Mohammad Saeed –