2017-11-27 11 views
-3

私はクラスのプロジェクトを行っています。マニフェストの問題が発生しました

誤って、私はアンドロイドマニフェスト構造の良い部分を削除しました。別のプロジェクトのバージョンをコピーして貼り付けましたが、エラーが発生します。

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

<!-- 
    The ACCESS_COARSE/FINE_LOCATION permissions are not required to use 
    Google Maps Android API v2, but you must specify either coarse or fine 
    location permissions for the 'MyLocation' functionality. 
--> 

<application 
android:allowBackup="true" 
android:icon="@mipmap/ic_launcher" 
android:label="@KidsLocation1" 
android:roundIcon="@mipmap/ic_launcher_round" 
android:supportsRtl="true" 
android:theme="@style/AppTheme" 
    > 
    <!-- 
     The API key for Google Maps-based APIs is defined as a string resource. 
     (See the file "res/values/google_maps_api.xml"). 
     Note that the API key is linked to the encryption key used to sign the APK. 
     You need a different API key for each encryption key, including the release key that is used to 
     sign the APK for publishing. 
     You can define the keys for the debug and release targets in src/debug/ and src/release/. 
    --> 
    <meta-data 
     android:name="com.google.android.geo.API_KEY" 
     android:value="@string/google_maps_key" /> 

    <activity 
     android:name=".MainActivity" 
     android:label="@string/title_activity_maps"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
</application> 
+2

http://idownvotedbecau.se/imageofcode –

+0

これを修正しました。 –

+2

開封の「」タグは自己閉鎖されています。つまり、最後に '/'を取り除いてください。 –

答えて

0

また、タグの前に、アプリケーションが場所を取得することに依存する場合は、場所のアクセス許可を含める必要があります。

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 
関連する問題