2016-06-25 9 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

いいえ、「ビルド」 - >「クリーン」メニューからプロジェクトをきれいにします。 –

答えて

0

です。これは私が似たプロジェクトから自動生成したAPIインデックスコードを誤って含むことが原因で発生していました。この問題が発生した場合は、最初から始めて、以前のプロジェクトからインポートするものに注意してください。

関連する問題