2016-05-20 16 views
11

Uygulama yapılamadı.uygulama yapılamadı Hata: Yürütme ': app: paket "packageName" Debug "için başarısız oldu. > değer (73836)> 0x0000ffff

Yapı başarısız oldu:

Error:Execution failed for task ':app:package "packageName" Debug'.> value (73836) > 0x0000ffff 

proje başarı ile kurulmuş, ancak bir kod satırı ekleyerek (Log.i()) (önbelleklerini geçersiz) yeniden başlattıktan sonra, inşa mesajı başarısız

beklenen işleri alırsınız gibidir

gradle-wrapper.properites

burada
distributionBase=GRADLE_USER_HOME 
distributionPath=wrapper/dists 
zipStoreBase=GRADLE_USER_HOME 
zipStorePath=wrapper/dists 
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-all.zip 

benim build.gradle dosyasıdır

apply plugin: 'com.android.application' 
android { 
compileSdkVersion 23 
buildToolsVersion '23.0.3' 

defaultConfig { 

    minSdkVersion 16 
    targetSdkVersion 23 
    versionCode 1 
    versionName '1.0' 
    renderscriptTargetApi 23 
    renderscriptSupportModeEnabled true 
    multiDexEnabled true 

} 

buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 

    } 
} 


packagingOptions { 
    exclude 'META-INF/DEPENDENCIES.txt' 
    exclude 'META-INF/DEPENDENCIES' 
    exclude 'META-INF/dependencies.txt' 
    exclude 'META-INF/LICENSE.txt' 
    exclude 'META-INF/LICENSE' 
    exclude 'META-INF/license.txt' 
    exclude 'META-INF/LGPL2.1' 
    exclude 'META-INF/NOTICE.txt' 
    exclude 'META-INF/NOTICE' 
    exclude 'META-INF/notice.txt' 
} 
useLibrary 'org.apache.http.legacy' 
} 

dependencies { 
compile files('libs/adobeMobileLibrary.jar') 
compile 'org.twitter4j:twitter4j-core:4.0.4' 
compile 'com.mcxiaoke.volley:library:1.0.19' 
compile 'com.facebook.android:facebook-android-sdk:4.8.1' 
compile 'com.google.code.gson:gson:2.4' 
compile 'com.daimajia.swipelayout:library:[email protected]' 
compile 'com.android.support:design:23.2.0' 
compile 'com.android.support:percent:23.2.0' 
compile 'com.squareup.okhttp3:okhttp:3.0.0-RC1' 
compile 'com.squareup.okio:okio:1.6.0' 
} 
+0

Komple stacktrace ve gradle dosyasını yapıştırın. –

+0

Onunla herhangi bir çözüm? –

+0

Sorun kodda bulunmuyor, her yeniden başlattığımda (önbellekleri geçersiz kılar) herhangi bir çözüm bulabilirim. Çalışmaya başlıyor ve bu sorun zaman zaman –

cevap

1

androidstudio1.5 gradle 2.2.0-alpha, bana bu soru gibi geliyor; 1.5.0'a düzeltebilir, sonra

1

çözüldü Gerçek bir cevap değil ama benim için işe yarayan tek şey, java sürecini öldürmek ve Run tekrar vurmaktır.

İlgili konular