change the package name

This commit is contained in:
tibbi 2016-02-25 22:11:03 +01:00
parent 9eefa472fc
commit b8642927a1
9 changed files with 12 additions and 12 deletions

View File

@ -5,7 +5,7 @@ android {
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "notes.simplemobiletools.com"
applicationId "com.simplemobiletools.notes"
minSdkVersion 16
targetSdkVersion 23
versionCode 1

View File

@ -1,4 +1,4 @@
package notes.simplemobiletools.com;
package com.simplemobiletools.notes;
import android.app.Application;
import android.test.ApplicationTestCase;

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
package="notes.simplemobiletools.com"
package="com.simplemobiletools.notes"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
@ -10,7 +10,7 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:name="com.simplemobiletools.notes.MainActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
@ -20,7 +20,7 @@
</activity>
<activity
android:name=".MyWidgetConfigure"
android:name="com.simplemobiletools.notes.MyWidgetConfigure"
android:screenOrientation="portrait"
android:theme="@style/MyWidgetConfigTheme">
<intent-filter>
@ -29,7 +29,7 @@
</activity>
<receiver
android:name=".MyWidgetProvider"
android:name="com.simplemobiletools.notes.MyWidgetProvider"
android:icon="@mipmap/ic_launcher"
android:label="Simple Notes">
<intent-filter>

View File

@ -1,4 +1,4 @@
package notes.simplemobiletools.com;
package com.simplemobiletools.notes;
public class Constants {
public static final String PREFS = "prefs";

View File

@ -1,4 +1,4 @@
package notes.simplemobiletools.com;
package com.simplemobiletools.notes;
import android.appwidget.AppWidgetManager;
import android.content.ComponentName;

View File

@ -1,4 +1,4 @@
package notes.simplemobiletools.com;
package com.simplemobiletools.notes;
import android.appwidget.AppWidgetManager;
import android.content.Context;

View File

@ -1,4 +1,4 @@
package notes.simplemobiletools.com;
package com.simplemobiletools.notes;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:configure="notes.simplemobiletools.com.MyWidgetConfigure"
android:configure="com.simplemobiletools.notes.MyWidgetConfigure"
android:initialLayout="@layout/widget"
android:minHeight="30dp"
android:minWidth="30dp"

View File

@ -1,4 +1,4 @@
package notes.simplemobiletools.com;
package com.simplemobiletools.notes;
import org.junit.Test;