Skip to content

Commit

Permalink
Layout changes, some fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
elidioxg committed Feb 9, 2017
1 parent 3474438 commit dfcfc78
Show file tree
Hide file tree
Showing 17 changed files with 1,171 additions and 375 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package geocodigos.gpsmarker;

import android.app.Application;
import android.test.ApplicationTestCase;

/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
4 changes: 2 additions & 2 deletions GPSMarker/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="geocodigos.gpsmarker" >

<permission android:name="geocodigos.geoconv.map.permission.MAPS_RECEIVE"
<permission android:name="geocodigos.gpsmarker.map.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-permission android:name="geocodigos.geoconv.map.permission.MAPS_RECEIVE"/>
<uses-permission android:name="geocodigos.gpsmarker.map.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

Expand Down
Loading

0 comments on commit dfcfc78

Please sign in to comment.