2017-08-18 20 views
1

アンドロイドJavaVersion.VERSION_1_7からJavaVersion.VERSION_1_8を更新しようとしています。私はcanaryブランチからAndroid Studio 3.0 Beta 2を使用しています。 by the bookのように見えますが、新しい設定でプロジェクトをコンパイルできません。以下の私のgradleファイルとエラーログの簡単な説明をビルドのアセンブルの出力として提供しました。アンドロイドへのアップグレードでプロジェクトをビルドできません。

私のgradleファイルのbuildscript部分は次のとおりです。

のGradle

buildscript { 
    repositories { 
     jcenter() 
     maven { url 'https://maven.google.com' } 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:3.0.0-beta2' 

     classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' 

     classpath 'org.aspectj:aspectjtools:1.8.6' 
    } 
} 

のGradleアンドロイド

android { 
    compileSdkVersion 25 
    buildToolsVersion "25.0.1" 

    defaultConfig { 
     minSdkVersion 15 
     targetSdkVersion 25 

     renderscriptTargetApi 23 
     renderscriptSupportModeEnabled true 
    } 

    // API 23 removes the http apache libraries, we require this to continue using them. We should 
    // eventually move away from them and then remove this 
    useLibrary 'org.apache.http.legacy' 

    flavorDimensions "default" 

    productFlavors { 
     // product flavors here 
    } 
} 

エラーbuildscript

Issues: 
- WARN: {PROJECT-PATH}/core/res/layout/preference_layout.xml:20 generated id android:id/summary for external package android 
- WARN: {PROJECT-PATH}/core/res/layout/preference_category_layout.xml:15 generated id android:id/title for external package android 
- ERROR: {PROJECT-PATH}/androidSDK/build/intermediates/incremental/mergeAospDebugResources/merged.dir/values/values.xml:6213 style attribute @android:attr/windowEnterAnimation not found 
- ERROR: {PROJECT-PATH}/androidSDK/build/intermediates/incremental/mergeAospDebugResources/merged.dir/values/values.xml:6214 style attribute @android:attr/windowExitAnimation not found 
- ERROR: {PROJECT-PATH}/androidSDK/build/intermediates/incremental/mergeAospDebugResources/merged.dir/values/values.xml:6226 style attribute @android:attr/windowEnterAnimation not found 
- ERROR: {PROJECT-PATH}/androidSDK/build/intermediates/incremental/mergeAospDebugResources/merged.dir/values/values.xml:6227 style attribute @android:attr/windowExitAnimation not found 
- ERROR: failed linking references 
     at com.android.builder.internal.aapt.v2.AaptV2Jni.buildException(AaptV2Jni.java:154) 
     at com.android.builder.internal.aapt.v2.AaptV2Jni.makeValidatedPackage(AaptV2Jni.java:98) 
     at com.android.builder.internal.aapt.AbstractAapt.link(AbstractAapt.java:40) 
     ... 49 more 

答えて

1

エラーが見つかりました。前

<style name="slideUpAnimation"> 
    <item name="android:windowEnterAnimation">@anim/slide_in_bottom</item> 
    <item name="android:windowExitAnimation">@anim/slide_out_bottom</item> 
</style> 

<style name="slideUpAnimation"> 
    <item name="@android:windowEnterAnimation">@anim/slide_in_bottom</item> 
    <item name="@android:windowExitAnimation">@anim/slide_out_bottom</item> 
</style> 

私は実際には、属性名から"@"の文字を削除する必要がありました

関連する問題