2017-06-11 42 views
0

我正在嘗試爲Google Glass製作應用程序。但是,當我試圖同步的gradle這個,這我表明這樣200上下的誤差(種了很多,所以我把它放在引擎收錄):爲Google Glass構建Google Gradle時出現錯誤「Gradle error Retrieving parent for item:No resources found that matches the given name」

https://pastebin.com/5LJXEy1w 

總之,這些錯誤類型「錯誤檢索項目的父項:找不到與給定名稱相匹配的資源「,來自大量中間文件。這是我的gradle文件:

apply plugin: 'com.android.application' 

repositories { 
    jcenter() 
    flatDir { 
     dirs 'prebuilt-libs' 
    } 
} 

android { 
    compileSdkVersion "Google Inc.:Glass Development Kit Preview:19" 
    buildToolsVersion "25.0.2" 
    defaultConfig { 
     applicationId "com.zeroexperiencestudio.glassqr" 
     minSdkVersion 19 
     targetSdkVersion 25 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.journeyapps:zxing-android-embedded:3.4.0' 
    compile 'com.android.support:appcompat-v7:25.0.2' 
    compile 'com.android.support:recyclerview-v7:25.0.2' 
} 

爲什麼會發生這種情況?我該如何解決這個問題?

這是我的清單:

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

    <application 
     android:hardwareAccelerated="false" 
     android:largeHeap="true" 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     > 
     <activity 
      android:name=".MainActivityTest" 
      android:label="@string/app_name" 
     > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 

      <meta-data 
       android:name="com.google.android.glass.VoiceTrigger" 
       android:resource="@xml/voice" /> 
     </activity> 
    </application> 

</manifest> 

回答

0

嘗試,如果你正在使用從AndroidManifest.xml文件中刪除android:theme

+0

不幸的是,我的清單中沒有任何'android:theme',並使用Google Glass的默認主題。不管怎麼說,還是要謝謝你。 –

相關問題