refactored package name from esrlabs.com to com.esrlabs
This commit is contained in:
parent
8aa0c856ab
commit
6df8f25250
3 changed files with 8 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name">
|
||||
<service
|
||||
android:name=".MyService"
|
||||
android:name="com.esrlabs.geofence.MyService"
|
||||
android:enabled="true"
|
||||
android:exported="true" >
|
||||
</service>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package esrlabs.com.geofence;
|
||||
package com.esrlabs.geofence;
|
||||
|
||||
import android.app.Service;
|
||||
import android.content.Context;
|
|
@ -1,12 +1,14 @@
|
|||
package esrlabs.com.geofence;
|
||||
package com.esrlabs.geofence;
|
||||
|
||||
import static esrlabs.com.geofence.MyService.CAN_PROVIDER;
|
||||
import static com.esrlabs.geofence.MyService.CAN_PROVIDER;
|
||||
|
||||
import android.content.Context;
|
||||
import android.location.Location;
|
||||
import android.location.LocationManager;
|
||||
import android.test.ServiceTestCase;
|
||||
|
||||
import com.esrlabs.geofence.MyService;
|
||||
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
@ -17,6 +19,8 @@ import org.robolectric.Shadows;
|
|||
import org.robolectric.annotation.Config;
|
||||
import org.robolectric.shadows.ShadowLocationManager;
|
||||
|
||||
import esrlabs.com.geofence.BuildConfig;
|
||||
|
||||
|
||||
@RunWith(RobolectricGradleTestRunner.class)
|
||||
@Config(constants = BuildConfig.class, emulateSdk = 17)
|
Loading…
Reference in a new issue