マージによるファイルの干渉を原因としたAndroidManifestのエラーを修正
This commit is contained in:
parent
4639ee8d53
commit
248666695e
|
@ -12,84 +12,55 @@
|
||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.Oplogy"
|
android:theme="@style/Theme.Oplogy"
|
||||||
|
tools:ignore="ExtraText"
|
||||||
tools:targetApi="31">
|
tools:targetApi="31">
|
||||||
<activity
|
|
||||||
android:name=".SetUpActivity"
|
|
||||||
android:exported="false" />
|
|
||||||
|
|
||||||
xmlns:tools="http://schemas.android.com/tools">
|
<!-- TODO: Before you run your application, you need a Google Maps API key.-->
|
||||||
|
|
||||||
<application
|
<!-- To get one, follow the directions here:-->
|
||||||
android:allowBackup="true"
|
|
||||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
||||||
android:fullBackupContent="@xml/backup_rules"
|
|
||||||
android:icon="@mipmap/ic_launcher"
|
|
||||||
android:label="@string/app_name"
|
|
||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
|
||||||
android:supportsRtl="true"
|
|
||||||
android:theme="@style/Theme.Oplogy"
|
|
||||||
tools:targetApi="31">
|
|
||||||
|
|
||||||
|
<!-- https://developers.google.com/maps/documentation/android-sdk/get-api-key-->
|
||||||
|
|
||||||
TODO: Before you run your application, you need a Google Maps API key.
|
<!-- Once you have your API key (it starts with "AIza"), define a new property in your-->
|
||||||
|
<!-- project's local.properties file (e.g. MAPS_API_KEY=Aiza...), and replace the-->
|
||||||
To get one, follow the directions here:
|
<!-- "YOUR_API_KEY" string in this file with "${MAPS_API_KEY}".-->
|
||||||
|
|
||||||
https://developers.google.com/maps/documentation/android-sdk/get-api-key
|
|
||||||
|
|
||||||
Once you have your API key (it starts with "AIza"), define a new property in your
|
|
||||||
project's local.properties file (e.g. MAPS_API_KEY=Aiza...), and replace the
|
|
||||||
"YOUR_API_KEY" string in this file with "${MAPS_API_KEY}".
|
|
||||||
|
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="com.google.android.geo.API_KEY"
|
android:name="com.google.android.geo.API_KEY"
|
||||||
android:value="AIzaSyBQ1Ak-I2NL5TP4K59ZI0VgzKk6HNZuusw" />
|
android:value="AIzaSyBQ1Ak-I2NL5TP4K59ZI0VgzKk6HNZuusw" />
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name=".MapsActivity"
|
|
||||||
android:exported="true"
|
|
||||||
android:label="@string/title_activity_maps">
|
|
||||||
|
|
||||||
<!-- <intent-filter> -->
|
<activity
|
||||||
<!-- <action android:name="android.intent.action.MAIN" /> -->
|
android:name=".Maps"
|
||||||
<!-- <category android:name="android.intent.category.LAUNCHER" /> -->
|
android:exported="false"
|
||||||
<!-- </intent-filter> -->
|
android:label="@string/title_activity_maps" />
|
||||||
</activity>
|
<activity
|
||||||
|
android:name=".TutorialActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".SubmissionActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".RootSearchActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".SetupActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".CreateUUID"
|
||||||
|
android:exported="false" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.example.oplogy.DialogFragment"
|
||||||
|
android:exported="false" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:exported="true">
|
android:exported="true"
|
||||||
|
tools:ignore="DuplicateActivity">
|
||||||
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<activity
|
|
||||||
android:name=".Maps"
|
|
||||||
android:exported="false"
|
|
||||||
android:label="@string/title_activity_maps" />
|
|
||||||
<activity
|
|
||||||
android:name=".TutorialActivity"
|
|
||||||
android:exported="false" />
|
|
||||||
<activity
|
|
||||||
android:name=".SubmissionActivity"
|
|
||||||
android:exported="false" />
|
|
||||||
<activity
|
|
||||||
android:name=".RootSearchActivity"
|
|
||||||
android:exported="false" />
|
|
||||||
<activity
|
|
||||||
android:name=".SetupActivity"
|
|
||||||
android:exported="false" />
|
|
||||||
<activity
|
|
||||||
android:name=".CreateUUID"
|
|
||||||
android:exported="false" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.example.oplogy.DialogFragment"
|
|
||||||
android:exported="false"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name=".MainActivity"
|
|
||||||
android:exported="true">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.MAIN" />
|
|
||||||
|
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user