Skip to content

Commit afacde7

Browse files
committed
back to original namespace net.margaritov
1 parent 568dad0 commit afacde7

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-24
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.c0br4.colorpickerpreference;
1+
package net.margaritov.colorpickerpreference;
22

33
import android.app.Application;
44
import android.test.ApplicationTestCase;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.c0br4.preference.colorpicker">
3+
package="net.margaritov.preference.colorpicker">
44

55
<application
66
android:icon="@drawable/icon"
77
android:label="@string/app_name">
88
<activity
9-
android:name="com.c0br4.preference.colorpicker.Test"
9+
android:name="net.margaritov.preference.colorpicker.Test"
1010
android:label="@string/app_name">
1111
<intent-filter>
1212
<action android:name="android.intent.action.MAIN" />
@@ -17,4 +17,4 @@
1717
</application>
1818
<uses-sdk android:minSdkVersion="7" />
1919

20-
</manifest>
20+
</manifest>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.c0br4.preference.colorpicker;
17+
package net.margaritov.preference.colorpicker;
1818

1919
import android.graphics.Bitmap;
2020
import android.graphics.Bitmap.Config;

ColorPickerPreference/src/main/java/com/c0br4/preference/colorpicker/ColorPickerDialog.java renamed to ColorPickerPreference/src/main/java/net/margaritov/preference/colorpicker/ColorPickerDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.c0br4.preference.colorpicker;
17+
package net.margaritov.preference.colorpicker;
1818

1919
import android.app.Dialog;
2020
import android.content.Context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.c0br4.preference.colorpicker;
17+
package net.margaritov.preference.colorpicker;
1818

1919
import android.content.Context;
2020
import android.graphics.Canvas;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.c0br4.preference.colorpicker;
17+
package net.margaritov.preference.colorpicker;
1818

1919
import android.content.Context;
2020
import android.content.res.TypedArray;

ColorPickerPreference/src/main/java/com/c0br4/preference/colorpicker/ColorPickerView.java renamed to ColorPickerPreference/src/main/java/net/margaritov/preference/colorpicker/ColorPickerView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.c0br4.preference.colorpicker;
17+
package net.margaritov.preference.colorpicker;
1818

1919
import android.content.Context;
2020
import android.graphics.Canvas;

ColorPickerPreference/src/main/java/com/c0br4/preference/colorpicker/Test.java renamed to ColorPickerPreference/src/main/java/net/margaritov/preference/colorpicker/Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.c0br4.preference.colorpicker;
17+
package net.margaritov.preference.colorpicker;
1818

1919
import android.os.Bundle;
2020
import android.preference.Preference;

ColorPickerPreference/src/main/res/layout-land/dialog_color_picker.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
66
You may obtain a copy of the License at
7-
7+
88
http://www.apache.org/licenses/LICENSE-2.0
9-
9+
1010
Unless required by applicable law or agreed to in writing, software
1111
distributed under the License is distributed on an "AS IS" BASIS,
1212
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -22,7 +22,7 @@
2222
android:paddingLeft="5dp"
2323
android:paddingRight="5dp">
2424

25-
<com.c0br4.preference.colorpicker.ColorPickerView
25+
<net.margaritov.preference.colorpicker.ColorPickerView
2626
android:id="@+id/color_picker_view"
2727
android:layout_width="wrap_content"
2828
android:layout_height="wrap_content"
@@ -57,7 +57,7 @@
5757
android:text="@string/press_color_to_apply"
5858
android:textAppearance="?android:attr/textAppearanceSmall" />
5959

60-
<com.c0br4.preference.colorpicker.ColorPickerPanelView
60+
<net.margaritov.preference.colorpicker.ColorPickerPanelView
6161
android:id="@+id/old_color_panel"
6262
android:layout_width="fill_parent"
6363
android:layout_height="40dp"
@@ -72,7 +72,7 @@
7272
android:text=""
7373
android:textSize="20sp" />
7474

75-
<com.c0br4.preference.colorpicker.ColorPickerPanelView
75+
<net.margaritov.preference.colorpicker.ColorPickerPanelView
7676
android:id="@+id/new_color_panel"
7777
android:layout_width="fill_parent"
7878
android:layout_height="40dp"

ColorPickerPreference/src/main/res/layout/dialog_color_picker.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
66
You may obtain a copy of the License at
7-
7+
88
http://www.apache.org/licenses/LICENSE-2.0
9-
9+
1010
Unless required by applicable law or agreed to in writing, software
1111
distributed under the License is distributed on an "AS IS" BASIS,
1212
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -22,7 +22,7 @@
2222
android:paddingLeft="5dp"
2323
android:paddingRight="5dp">
2424

25-
<com.c0br4.preference.colorpicker.ColorPickerView
25+
<net.margaritov.preference.colorpicker.ColorPickerView
2626
android:id="@+id/color_picker_view"
2727
android:layout_width="wrap_content"
2828
android:layout_height="wrap_content"
@@ -63,7 +63,7 @@
6363
android:layout_marginBottom="10dp"
6464
android:orientation="horizontal">
6565

66-
<com.c0br4.preference.colorpicker.ColorPickerPanelView
66+
<net.margaritov.preference.colorpicker.ColorPickerPanelView
6767
android:id="@+id/old_color_panel"
6868
android:layout_width="0px"
6969
android:layout_height="fill_parent"
@@ -78,7 +78,7 @@
7878
android:text=""
7979
android:textSize="20sp" />
8080

81-
<com.c0br4.preference.colorpicker.ColorPickerPanelView
81+
<net.margaritov.preference.colorpicker.ColorPickerPanelView
8282
android:id="@+id/new_color_panel"
8383
android:layout_width="0px"
8484
android:layout_height="wrap_content"

0 commit comments

Comments
 (0)