2016-06-25 58 views
1

我在使用Android Studio構建已簽名的apk時遇到這些錯誤。請幫助我建立應用程序。與Google Play服務相關的Android Studio錯誤

1.

Error:(42, 28) No resource found that matches the given name (at 'value' with value '@integer/google_play_services_version').

2.

Error:Execution failed for task ':app:processDebugResources'. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/home/dna/Android/Sdk/build-tools/23.0.2/aapt'' finished with non-zero exit value 1

這是我的AndroidManifest.xml文件

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

    <uses-sdk 
     android:minSdkVersion="15" 
     android:targetSdkVersion="23" /> 

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

    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme" > 
     <activity 
      android:name="appen.woltlab_bb.SplashScreen" 
      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="appen.woltlab_bb.MainActivity" 
      android:label="@string/app_name" > 
      <intent-filter> 
       <action android:name="appen.woltlab_bb.MAINACTIVITY" /> 

       <category android:name="android.intent.category.DEFAULT" /> 
      </intent-filter> 
     </activity> 
     <!-- 
ATTENTION: This was auto-generated to add Google Play services to your project for 
    App Indexing. See https://g.co/AppIndexing/AndroidStudio for more information. 
     --> 
     <meta-data 
      android:name="com.google.android.gms.version" 
      android:value="@integer/google_play_services_version" /> 
    </application> 

</manifest> 
+0

嘗試清理並建立您的項目。 –

+0

@isnotmenow,你的意思是從頭開始? – user227495

+0

不,從菜單Build - > Clean中清理你的項目。 –

回答

0

我得到它固定。這是由於意外地包含了一些來自我的類​​似項目的自動生成的API索引代碼。如果您遇到此問題,請從頭開始,並小心處理您從以前項目導入的內容。