mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-01-29 13:39:16 +01:00
change the package name
This commit is contained in:
parent
9eefa472fc
commit
b8642927a1
@ -5,7 +5,7 @@ android {
|
||||
buildToolsVersion "23.0.2"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "notes.simplemobiletools.com"
|
||||
applicationId "com.simplemobiletools.notes"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 23
|
||||
versionCode 1
|
||||
|
@ -1,4 +1,4 @@
|
||||
package notes.simplemobiletools.com;
|
||||
package com.simplemobiletools.notes;
|
||||
|
||||
import android.app.Application;
|
||||
import android.test.ApplicationTestCase;
|
@ -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>
|
||||
|
@ -1,4 +1,4 @@
|
||||
package notes.simplemobiletools.com;
|
||||
package com.simplemobiletools.notes;
|
||||
|
||||
public class Constants {
|
||||
public static final String PREFS = "prefs";
|
@ -1,4 +1,4 @@
|
||||
package notes.simplemobiletools.com;
|
||||
package com.simplemobiletools.notes;
|
||||
|
||||
import android.appwidget.AppWidgetManager;
|
||||
import android.content.ComponentName;
|
@ -1,4 +1,4 @@
|
||||
package notes.simplemobiletools.com;
|
||||
package com.simplemobiletools.notes;
|
||||
|
||||
import android.appwidget.AppWidgetManager;
|
||||
import android.content.Context;
|
@ -1,4 +1,4 @@
|
||||
package notes.simplemobiletools.com;
|
||||
package com.simplemobiletools.notes;
|
||||
|
||||
import android.appwidget.AppWidgetManager;
|
||||
import android.appwidget.AppWidgetProvider;
|
@ -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"
|
||||
|
@ -1,4 +1,4 @@
|
||||
package notes.simplemobiletools.com;
|
||||
package com.simplemobiletools.notes;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user