Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
moved location examples to new package (#892)
Browse files Browse the repository at this point in the history
  • Loading branch information
Langston Smith authored Nov 9, 2018
1 parent 6585e07 commit 6a56a07
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@
import com.mapbox.mapboxandroiddemo.examples.offline.OfflineManagerActivity;
import com.mapbox.mapboxandroiddemo.examples.offline.SimpleOfflineMapActivity;
import com.mapbox.mapboxandroiddemo.examples.plugins.BuildingPluginActivity;
import com.mapbox.mapboxandroiddemo.examples.plugins.KotlinLocationComponentActivity;
import com.mapbox.mapboxandroiddemo.examples.location.KotlinLocationComponentActivity;
import com.mapbox.mapboxandroiddemo.examples.plugins.LocalizationPluginActivity;
import com.mapbox.mapboxandroiddemo.examples.plugins.LocationComponentActivity;
import com.mapbox.mapboxandroiddemo.examples.plugins.LocationComponentFragmentActivity;
import com.mapbox.mapboxandroiddemo.examples.location.LocationComponentActivity;
import com.mapbox.mapboxandroiddemo.examples.location.LocationComponentFragmentActivity;
import com.mapbox.mapboxandroiddemo.examples.plugins.PlaceSelectionPluginActivity;
import com.mapbox.mapboxandroiddemo.examples.plugins.PlacesPluginActivity;
import com.mapbox.mapboxandroiddemo.examples.plugins.TrafficPluginActivity;
Expand Down
6 changes: 3 additions & 3 deletions MapboxAndroidDemo/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,14 @@
android:value="com.mapbox.mapboxandroiddemo.MainActivity" />
</activity>
<activity
android:name=".examples.plugins.KotlinLocationComponentActivity"
android:name=".examples.location.KotlinLocationComponentActivity"
android:label="@string/activity_location_location_component_title">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.mapbox.mapboxandroiddemo.MainActivity" />
</activity>
<activity
android:name=".examples.plugins.LocationComponentActivity"
android:name=".examples.location.LocationComponentActivity"
android:label="@string/activity_location_location_component_title">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
Expand All @@ -170,7 +170,7 @@
android:value="com.mapbox.mapboxandroiddemo.MainActivity" />
</activity>
<activity
android:name=".examples.plugins.LocationComponentFragmentActivity"
android:name=".examples.location.LocationComponentFragmentActivity"
android:label="@string/activity_location_user_location_map_frag_title">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mapbox.mapboxandroiddemo.examples.plugins
package com.mapbox.mapboxandroiddemo.examples.location

import android.annotation.SuppressLint
import android.os.Bundle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mapbox.mapboxandroiddemo.examples.plugins;
package com.mapbox.mapboxandroiddemo.examples.location;

import android.os.Bundle;
import android.support.annotation.NonNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mapbox.mapboxandroiddemo.examples.plugins;
package com.mapbox.mapboxandroiddemo.examples.location;

import android.os.Bundle;
import android.support.annotation.NonNull;
Expand Down

0 comments on commit 6a56a07

Please sign in to comment.