renamed
This commit is contained in:
		@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
 | 
			
		||||
android {
 | 
			
		||||
    compileSdkVersion 28
 | 
			
		||||
    defaultConfig {
 | 
			
		||||
        applicationId "fmaps.grabow.com.location001"
 | 
			
		||||
        applicationId "fmaps.grabow.com.externGNSS"
 | 
			
		||||
        minSdkVersion 14
 | 
			
		||||
        targetSdkVersion 28
 | 
			
		||||
        versionCode 1
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
package fmaps.grabow.com.location001;
 | 
			
		||||
package fmaps.grabow.com.externGNSS;
 | 
			
		||||
 | 
			
		||||
import android.content.Context;
 | 
			
		||||
import android.support.test.InstrumentationRegistry;
 | 
			
		||||
@ -21,6 +21,6 @@ public class ExampleInstrumentedTest {
 | 
			
		||||
        // Context of the app under test.
 | 
			
		||||
        Context appContext = InstrumentationRegistry.getTargetContext();
 | 
			
		||||
 | 
			
		||||
        assertEquals("fmaps.grabow.com.location001", appContext.getPackageName());
 | 
			
		||||
        assertEquals("fmaps.grabow.com.externGNSS", appContext.getPackageName());
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
<?xml version="1.0" encoding="utf-8"?>
 | 
			
		||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | 
			
		||||
    package="fmaps.grabow.com.location001">
 | 
			
		||||
    package="externGNSS">
 | 
			
		||||
 | 
			
		||||
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
 | 
			
		||||
    <uses-permission android:name="android.permission.INTERNET" />
 | 
			
		||||
@ -12,7 +12,7 @@
 | 
			
		||||
        android:roundIcon="@mipmap/ic_launcher_round"
 | 
			
		||||
        android:supportsRtl="true"
 | 
			
		||||
        android:theme="@style/AppTheme">
 | 
			
		||||
        <activity android:name=".MainActivity">
 | 
			
		||||
        <activity android:name="fmaps.grabow.com.externGNSS.MainActivity">
 | 
			
		||||
            <intent-filter>
 | 
			
		||||
                <action android:name="android.intent.action.MAIN" />
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
package fmaps.grabow.com.location001;
 | 
			
		||||
package fmaps.grabow.com.externGNSS;
 | 
			
		||||
 | 
			
		||||
import android.Manifest;
 | 
			
		||||
import android.annotation.SuppressLint;
 | 
			
		||||
@ -1,3 +1,3 @@
 | 
			
		||||
<resources>
 | 
			
		||||
    <string name="app_name">Location001</string>
 | 
			
		||||
    <string name="app_name">Extern GNSS</string>
 | 
			
		||||
</resources>
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
package fmaps.grabow.com.location001;
 | 
			
		||||
package fmaps.grabow.com.externGNSS;
 | 
			
		||||
 | 
			
		||||
import org.junit.Test;
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user