2016-10-16 6 views
0

私はインポートされたAdnroidアプリで作業しています。インポートされたアプリは旧バージョンのGradleを使用していたので、新しいアプリに同期しようとしています(Gradle 19を使用していました)。私はGradle 24 b/cを使用することができません。見つからないシンボルクラスのファインダーがあるので、これを21で動作させようとしていますが、まだ動作しません。誰も助けることができますか?ここで0以外の値を持つ桁が存在します

は私の外.buildファイルです:

:私は、私はこのエラーを取得する物理アンドロイド上でこれを実行すると

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 21 
    buildToolsVersion "21.0.0" 

    defaultConfig { 
     minSdkVersion 16 
     targetSdkVersion 21 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled true 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.android.support:support-v4:21.0.0' 
    compile 'com.android.support:appcompat-v7:21.0.0' 
// compile "com.android.support:support-core-utils:21.0.0" 
    compile 'com.j256.ormlite:ormlite-core:4.48' 
    compile 'com.j256.ormlite:ormlite-android:4.48' 
    compile 'se.emilsjolander:stickylistheaders:2.5.2' 
    compile 'com.github.chrisbanes.photoview:library:1.2.2' 
    compile 'com.loopj.android:android-async-http:1.4.6' 
    compile 'com.google.android.gms:play-services:6.1.71' 
} 

:ここ

// Top-level build file where you can add configuration options common to all sub-projects/modules. 

buildscript { 
    repositories { 
     mavenCentral() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.1.3' 
    } 
} 

allprojects { 
    repositories { 
     mavenCentral() 
//  maven { url 'http://clinker.47deg.com/nexus/content/groups/public' } 
//  maven { url 'http://repo1.maven.org/maven2' } 
    } 
} 

は私のインナー.buildファイルです

Executing tasks: [:leafsnap:clean, :leafsnap:generateDebugSources, :leafsnap:generateDebugAndroidTestSources, :leafsnap:mockableAndroidJar, :leafsnap:prepareDebugUnitTestDependencies, :leafsnap:assembleDebug] 

Configuration on demand is an incubating feature. 
Observed package id 'add-ons;addon-google_apis-google-24' in inconsistent location 'C:\Users\Butters Stotch\AppData\Local\Android\Sdk\add-ons\addon-google_apis-google-24-1' (Expected 'C:\Users\Butters Stotch\AppData\Local\Android\Sdk\add-ons\addon-google_apis-google-24') 
Already observed package id 'add-ons;addon-google_apis-google-24' in 'C:\Users\Butters Stotch\AppData\Local\Android\Sdk\add-ons\addon-google_apis-google-24'. Skipping duplicate at 'C:\Users\Butters Stotch\AppData\Local\Android\Sdk\add-ons\addon-google_apis-google-24-1' 
Incremental java compilation is an incubating feature. 
:leafsnap:clean 
:leafsnap:preBuild UP-TO-DATE 
:leafsnap:preDebugBuild UP-TO-DATE 
:leafsnap:checkDebugManifest 
:leafsnap:preReleaseBuild UP-TO-DATE 
:leafsnap:prepareComAndroidSupportAppcompatV72100Library 
:leafsnap:prepareComAndroidSupportSupportV42100Library 
:leafsnap:prepareComGoogleAndroidGmsPlayServices6171Library 
:leafsnap:prepareSeEmilsjolanderStickylistheaders252Library 
:leafsnap:prepareDebugDependencies 
:leafsnap:compileDebugAidl 
:leafsnap:compileDebugRenderscript 
:leafsnap:generateDebugBuildConfig 
:leafsnap:mergeDebugShaders 
:leafsnap:compileDebugShaders 
:leafsnap:generateDebugAssets 
:leafsnap:mergeDebugAssets 
:leafsnap:generateDebugResValues UP-TO-DATE 
:leafsnap:generateDebugResources 
:leafsnap:mergeDebugResources 
:leafsnap:processDebugManifest 
:leafsnap:processDebugResources FAILED 

FAILURE: Build failed with an exception. 

* What went wrong: 
Execution failed for task ':leafsnap:processDebugResources'. 
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\Butters Stotch\AppData\Local\Android\Sdk\build-tools\21.0.0\aapt.exe'' finished with non-zero exit value -1073741819 

* Try: 
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. 

BUILD FAILED 

私は何が間違っているのか分かりません。誰も助けることができますか?

答えて

3
dependencies { 
     classpath 'com.android.tools.build:gradle:2.1.3' 
    } 

あなたはdocumentationに応じて依存関係を持たなければならないとして、次の必要のGradleプラグイン2.1.3を使用しています。現在buildToolsVersion "21.0.0"として設定し、ビルド・ツールのバージョンに対し

Android Plugin for Gradle, Revision 2.1.3 (August 2016)

Dependencies:

Gradle 2.14.1 or higher. 
    Build Tools 23.0.2 or higher. 

This update adds compatibility with Gradle 2.14.1, which includes performance improvements, new features, and an important security fix. 

For more details, see the Gradle release notes.

。 ビルドツールのバージョンを23.0.2に変更し、それに応じてサポートと依存関係を更新し、再度同期します。

関連する問題