从eclipse导入progect到android studio

时间:2018-02-20 22:27:45

标签: android eclipse android-studio gradle

我从eclipse导入项目后,在Android Studio中收到此错误

  

C:\用户\ admn.gradle \缓存\变换-1 \文件-1.1 \ actionbarsherlock-4.4.0.aar \ 9642e2c79c11b0f8f68064f6cbc64e8e \ RES \值\ values.xml

     

错误:(5,5)错误:此处先前定义的资源。

     

C:\用户\ admn.gradle \缓存\变换-1 \文件-1.1 \程序兼容性-v7-25.2.0.aar \ 65648038dd839bb6dcf32985b0a61b7d \ RES \值\ values.xml

     

错误:(203,5)错误:资源'attr / background'与config''的重复值。   错误:(203,5)错误:资源'attr / windowMinWidthMajor'与config''的重复值。

     

错误:(203,5)错误:资源'attr / windowMinWidthMinor'与config''的重复值。

     

错误:(203,5)错误:此处先前定义的资源。

     

错误:(203,5)错误:此处先前定义的资源。

     

D:\ pc \ andoid-app \ apps \ infoapps \按数字着色\ Coloring Book \ studiocoloring \ app \ build \ intermediates \ incremental \ mergeDebugResources \ merged.dir \ values \ values.xml

     

错误:(165)资源'attr / background'的重复值为config''。

     

错误:(12)此前定义的资源。

     

错误:(190)此前定义的资源。

     

错误:(357)资源'attr / windowMinWidthMajor'与config''的重复值。

     

错误:(357)资源'attr / windowMinWidthMinor'与config''的重复值。

     

错误:(190)此前定义的资源。

     

错误:java.util.concurrent.ExecutionException:

     

com.android.tools.aapt2.Aapt2Exception:AAPT2错误:检查日志以获取详细信息   错误:任务':app:mergeDebugResources'执行失败。

     

错误:java.util.concurrent.ExecutionException:com.android.tools.aapt2.Aapt2Exception:AAPT2错误:检查日志以获取详细信息

build.geadl module:app

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion "27.0.3"

defaultConfig {
    applicationId "com.package.name"
    minSdkVersion 8
    targetSdkVersion 17
}

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

dependencies {
compile 'com.android.support:support-v4:26.0.0-alpha1'
compile 'com.google.android.gms:play-services:+'
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
compile 'com.android.support:support-v4:20.0.0'
compile files('libs/picasso-2.4.0.jar')
}

build.gradl项目

// Top-level build file where you can add configuration options common to 
all sub-projects/modules.
buildscript {
repositories {
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'
}
}

allprojects {
repositories {
    jcenter()
}
}

清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.package.namer"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
    android:allowBackup="true"
    android:icon="@drawable/app_icon"
    android:label="@string/app_name"
    android:theme="@style/Theme.Sherlock.Light" >
    <activity
        android:name="com.package.name.SplashActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.package.name.PicSelect"
        android:configChanges="orientation|keyboardHidden|screenSize" >
    </activity>
    <activity
        android:name="com.package.name.PicItem"
        android:configChanges="orientation|keyboardHidden|screenSize" >
    </activity>
    <activity
        android:name="com.package.name.FloodFillActivity"
        android:configChanges="orientation|keyboardHidden|screenSize" >
    </activity>

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <!-- Activity required to show ad overlays. -->
    <activity
        android:name="com.google.android.gms.ads.AdActivity"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
</application>

</manifest>

有谁知道如何修复它?

0 个答案:

没有答案